list

Pack: iso-codes · Endpoint: https://gateway.pipeworx.io/iso-codes/mcp

“List all countries / currencies / languages / scripts” / “all ISO codes for [kind]” — dump every record in one ISO list, optionally filtered. Pass kind=“countries” / “languages” / “currencies” / “scripts” / “subdivisions”. Use for enumeration or building dropdowns.

Parameters

NameTypeRequiredDescription
kindstringyescountries | languages | currencies | scripts | subdivisions
filterstringno

Example call

Arguments

{
  "kind": "countries"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list', {
  "kind": "countries"
});

More examples

{
  "kind": "languages",
  "filter": "eu"
}
{
  "kind": "currencies"
}

Response shape

Always returns: kind, total, results

FieldTypeDescription
kindstringType of ISO codes listed
totalnumberTotal records in the dataset
resultsarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "description": "Type of ISO codes listed"
    },
    "total": {
      "type": "number",
      "description": "Total records in the dataset"
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "ISO code record matching the kind"
      }
    }
  },
  "required": [
    "kind",
    "total",
    "results"
  ]
}

Connect

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

{
  "mcpServers": {
    "iso-codes": {
      "url": "https://gateway.pipeworx.io/iso-codes/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026