translate

Pack: deepl · Endpoint: https://gateway.pipeworx.io/deepl/mcp

Translate text (string or string[]).

Parameters

NameTypeRequiredDescription
textunknownyesString or array of strings.
target_langstringyes
source_langstringno
split_sentencesstringno
preserve_formattingbooleanno
formalitystringno
glossary_idstringno
tag_handlingstringno
outline_detectionbooleanno
non_splitting_tagsstringno
splitting_tagsstringno
ignore_tagsstringno

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":"translate","arguments":{}}}'

Response shape

Always returns: translations

FieldTypeDescription
translationsarrayArray of translated text results
Full JSON Schema
{
  "type": "object",
  "properties": {
    "translations": {
      "type": "array",
      "description": "Array of translated text results",
      "items": {
        "type": "object",
        "properties": {
          "text": {
            "type": "string",
            "description": "Translated text"
          },
          "detected_source_language": {
            "type": "string",
            "description": "Detected source language code"
          }
        },
        "required": [
          "text"
        ]
      }
    }
  },
  "required": [
    "translations"
  ]
}

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.

Regenerated from source · build May 21, 2026