country_calling_codes

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

Look up international calling (dialing) codes. With no args, lists all. Pass query to filter by country name, ISO code, or calling code (e.g. “germany”, “DE”, “49”).

Parameters

NameTypeRequiredDescription
querystringnoCountry name, ISO alpha-2 code, or calling code to search for.

Example call

Arguments

{
  "query": "germany"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('country_calling_codes', {
  "query": "germany"
});

More examples

{
  "query": "49"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026