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
| Name | Type | Required | Description |
|---|---|---|---|
kind | string | yes | countries | languages | currencies | scripts | subdivisions |
filter | string | no |
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
| Field | Type | Description |
|---|---|---|
kind | string | Type of ISO codes listed |
total | number | Total records in the dataset |
results | array |
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.