MCP-Lingvanex-Translate
Lingvanex MCP Server Cloud API – A Model Context Protocol server that provides fast and accurate text translation using the Lingvanex Cloud API. Supports 100+ languages and integrates seamlessly with Claude Desktop and other MCP-compatible clients.
MCP Prototype – Translate Server
This project implements an MCP (Model Context Protocol) server for text translation. The server supports two transports:
- stdio – for integration with Claude Desktop
- http (streamable) – for testing and working via HTTP + SSE
⚙️ Requirements
- Node.js >= 18
- Yarn or npm
- Installed Claude Desktop (for stdio integration)
- Lingvanex Translator account for text translation
🔑 Lingvanex Translator Setup
To use the Lingvanex Translator you'll need a Lingvanex account.
- If you don't have one, sign up for free
- Go to the Cloud API tab: Cloud API
- Fill out the Billing Address data
- Click Continue to payment
- To get a free trial, it is not necessary to add your payment card
- Your API key will be generated and visible in the Cloud API tab: API key
Now you are ready to start using the translation API. Below is a video tutorial of the overall process (if available on Lingvanex site).
🚀 Installation & Build
Clone the repository
git clone https://github.com/lingvanex-mt/MCP-Lingvanex-Translate.git cd mcp-prototype
Install dependencies
yarn install
🔌 Run in stdio mode (Claude Desktop)
stdio mode is used by Claude Desktop to connect to local MCP servers.
Set environment variable:
TRANSPORT=stdio
Start the server:
yarn build yarn start
Expected output:
MCP stdio transport running
Translate MCP Server ready
🌐 Run in HTTP mode (streamable)
http mode runs a local HTTP server with HTTP transport. Useful for browser testing or with curl.
Set environment variables:
TRANSPORT=http HTTP_PORT=3000
Test the server:
curl http://127.0.0.1:3000/ping
Expected response:
{ "status": "ok", "transport": "http" }
Use MCP Inspector for debugging:
npx @modelcontextprotocol/inspector
In the MCP Inspector UI, select Transport Type - Streamable HTTP; URL - http://localhost:3000/mcp. Click Connect.
🖥️ Integration with Claude Desktop
Claude Desktop discovers local MCP servers via config file:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Example config (Windows)
Open (or create) claude_desktop_config.json and add:
{ "mcpServers": { "translate": { "command": "node", "args": [ "C:\Users\path\to\project\dist\index.js" ] } } }
⚠️ Make sure to update the path to your local
dist/index.jsafter build!
✅ How to verify
- Launch Claude Desktop.
- Enter a request like:"Use the MCP tool
translatetextto translate 'Hello world' into Russian." - If everything is configured correctly, Claude will call your MCP server and return the translation.
📌 Available Tools
translate_text
Translate text from one language into another.
Arguments:
text– the text to translatesourceLang– source language code (e.g."en")targetLang– target language code (e.g."ru")
Example request:
{ "tool": "translate_text", "args": { "text": "Good morning", "sourceLang": "en", "targetLang": "fr" } }
Example response:
{ "content": [ { "type": "text", "text": "Bonjour" } ] }
Related Servers
Confluence
Interact with Confluence to execute CQL queries, retrieve page content, and update pages.
Sassy Fact Check
A sassy, fact-checking Instagram DM bot that roasts bad takes with citations.
MailerLite MCP server
Turn AI tools into your email marketing assistant.
LLM Chat Assistant
A chat assistant that integrates an MCP client with an LLM and other external MCP servers.
Claude Assist MCP
Enables communication between Claude Code and Claude Desktop for code reviews.
Facebook Ads
MCP server acting as an interface to the Facebook Ads, enabling programmatic access to Facebook Ads data and management features.
OpenAI Speech-to-Text
Transcribe audio files using OpenAI's Speech-to-Text API.
Discord Notification MCP Server
Sends notifications to Discord channels or users via a bot.
thanks.io MCP Server
Send real handwritten mail (postcards, letters, notecards) from any AI agent via thanks.io's API.
Chatterbox TTS
Generates text-to-speech audio with automatic playback using the Chatterbox TTS model.