Connects Claude to DeepL's translation API through the Pipeworx gateway. Exposes a translate tool that handles both single strings and arrays, letting you translate text between any of DeepL's supported language pairs without leaving your MCP client. Useful when you're building multilingual features, processing user content in different languages, or need quick translations during development without switching contexts. The free tier includes 500,000 characters per month. Part of the larger Pipeworx ecosystem, so you can add it standalone or access it through their unified gateway alongside 670+ other data sources.
DeepL MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
translate | Translate text (string or string[]). |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"deepl": {
"url": "https://gateway.pipeworx.io/deepl/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 Deepl data" })
The gateway picks the right tool and fills the arguments automatically.
MIT