Wraps the LibreTranslate API to give Claude translation capabilities across multiple languages. The server connects through Pipeworx's gateway infrastructure, which you can use standalone for just translation or as part of their broader platform with 673+ data sources. Setup is straightforward: point your MCP client at their hosted endpoint and you're ready to translate. They also offer an ask_pipeworx tool that lets you make translation requests in plain English rather than calling specific functions directly. Useful when you need multilingual support in your Claude workflows without managing API keys or running translation services yourself.
Translate MCP — wraps LibreTranslate API (https://libretranslate.com/)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"translate": {
"url": "https://gateway.pipeworx.io/translate/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Translate data" })
The gateway picks the right tool and fills the arguments automatically.
MIT