- Lingvanex Text Translator
Lingvanex Text Translator
Overview
what is Lingvanex Text Translator MCP Server?
Lingvanex Text Translator MCP Server is a Model Context Protocol (MCP) server that provides multilingual text translation using the Lingvanex API.
It can be used by Claude Desktop or any MCP-compatible client to translate text between more than 100 languages.
how to use Translate MCP Server?
To use Translate MCP Server, you need a Lingvanex account and API key.
Install dependencies, build the project, and start the server.
You can run it in stdio mode for Claude Desktop integration, or in HTTP mode to expose a local API that works with browsers, curl, or any other client that supports HTTP.
key features of Translate MCP Server?
- Multilingual text translation powered by Lingvanex API
- Supports both stdio (Claude Desktop) and HTTP (API access) transports
- Easy integration with Claude Desktop
- HTTP mode can be used as a lightweight translation API for external tools
- Provides a simple tool interface (
translate_text)
use cases of Translate MCP Server?
- Translating user prompts or documents inside Claude Desktop
- Using the HTTP server as a local API for custom apps and services
- Connecting third-party tools or scripts to translation via HTTP endpoints
- Building multilingual assistants with MCP-compatible clients
- Learning and experimenting with MCP integration
FAQ from Translate MCP Server?
Can Translate MCP Server work without a Lingvanex API key?
No. You need a free Lingvanex account and API key to use the translation feature.
Is Translate MCP Server free to use?
Yes! The server is open-source, and Lingvanex provides a free trial API key.
Which transports are supported?
- stdio for Claude Desktop integration
- HTTP for API access
What are the system requirements?
You need Node.js >= 18 and a Lingvanex API key. Yarn or npm is recommended for installation.
Server Config
{
"command": "node",
"args": [
"./dist/index.js"
],
"env": {
"TRANSPORT": "stdio",
"LINGVANEX_API_KEY": "your_api_key_here"
}
}