usage

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

Current month’s usage + limits.

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

Response shape

Always returns: character_count, character_limit

FieldTypeDescription
character_countintegerCharacters translated in current month
character_limitintegerMonthly character translation limit
Full JSON Schema
{
  "type": "object",
  "properties": {
    "character_count": {
      "type": "integer",
      "description": "Characters translated in current month"
    },
    "character_limit": {
      "type": "integer",
      "description": "Monthly character translation limit"
    }
  },
  "required": [
    "character_count",
    "character_limit"
  ]
}

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