target_languages
Pack: deepl · Endpoint: https://gateway.pipeworx.io/deepl/mcp
Supported target languages.
Example call
curl -X POST https://gateway.pipeworx.io/deepl/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"target_languages","arguments":{}}}'
Response shape
Full JSON Schema
{
"type": "array",
"description": "List of supported target languages",
"items": {
"type": "object",
"properties": {
"language": {
"type": "string",
"description": "Language code"
},
"name": {
"type": "string",
"description": "Language name"
},
"supports_formality": {
"type": "boolean",
"description": "Whether language supports formality settings"
}
},
"required": [
"language",
"name"
]
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"deepl": {
"url": "https://gateway.pipeworx.io/deepl/mcp"
}
}
}
See Getting Started for client-specific install steps.