list_languages
Pack: what3words · Endpoint: https://gateway.pipeworx.io/what3words/mcp
Supported languages for 3-word output (code + name).
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/what3words/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: count, languages
| Field | Type | Description |
|---|---|---|
count | number | Number of supported languages |
languages | array | List of available languages |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Number of supported languages"
},
"languages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"code": {
"type": [
"string",
"null"
],
"description": "2-letter language code"
},
"name": {
"type": [
"string",
"null"
],
"description": "English name of the language"
},
"native_name": {
"type": [
"string",
"null"
],
"description": "Native name of the language"
}
}
},
"description": "List of available languages"
}
},
"required": [
"count",
"languages"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"what3words": {
"url": "https://gateway.pipeworx.io/what3words/mcp"
}
}
}
See Getting Started for client-specific install steps.