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

FieldTypeDescription
countnumberNumber of supported languages
languagesarrayList 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.

Regenerated from source · build July 6, 2026