pipeworx-io/mcp-translate
MCP server for language translation via LibreTranslate
Platform-specific configuration:
{
"mcpServers": {
"mcp-translate": {
"command": "npx",
"args": [
"-y",
"mcp-translate"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
MCP server for language translation via LibreTranslate. Free, no auth required.
| Tool | Description | |------|-------------| | translate | Translate text from a source language to a target language | | detect_language | Detect the language of a text string | | list_languages | List all supported language codes and names |
Send a JSON-RPC request to the Pipeworx gateway:
curl -X POST https://gateway.pipeworx.io/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "translate",
"arguments": {
"text": "Hello, world!",
"source": "en",
"target": "es"
}
}
}'MIT
Loading reviews...