list_languages

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

List all languages supported by the translation API. Returns language codes and names.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/translate/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_languages","arguments":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_languages', {});

Response shape

Always returns: total, languages

FieldTypeDescription
totalnumberTotal number of supported languages
languagesarrayList of supported languages
Full JSON Schema
{
  "type": "object",
  "properties": {
    "total": {
      "type": "number",
      "description": "Total number of supported languages"
    },
    "languages": {
      "type": "array",
      "description": "List of supported languages",
      "items": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "description": "Language code"
          },
          "name": {
            "type": "string",
            "description": "Language name"
          }
        },
        "required": [
          "code",
          "name"
        ]
      }
    }
  },
  "required": [
    "total",
    "languages"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "translate": {
      "url": "https://gateway.pipeworx.io/translate/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026