list_languages
Pack: translate · Endpoint: https://gateway.pipeworx.io/translate/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/list_languages for the schema, then POST the same URL with its arguments for the data.
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
| Field | Type | Description |
|---|---|---|
total | number | Total number of supported languages |
languages | array | List 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.