currency

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

“Currency code for [X]” / “ISO 4217 for [currency]” / “what code is [USD / EUR / JPY]” — currency record (ISO 4217) by name or code. Returns alpha-3 + numeric code + official name. Use for finance, accounting, multicurrency systems.

Parameters

NameTypeRequiredDescription
querystringyes

Example call

Arguments

{
  "query": "US Dollar"
}

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":"currency","arguments":{"query":"US Dollar"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('currency', {
  "query": "US Dollar"
});

More examples

{
  "query": "USD"
}
{
  "query": "840"
}

Response shape

FieldTypeDescription
alpha_3stringISO 4217 three-letter code
numericstringISO 4217 numeric code
namestringCurrency name
Full JSON Schema
{
  "type": [
    "object",
    "null"
  ],
  "properties": {
    "alpha_3": {
      "type": "string",
      "description": "ISO 4217 three-letter code"
    },
    "numeric": {
      "type": "string",
      "description": "ISO 4217 numeric code"
    },
    "name": {
      "type": "string",
      "description": "Currency name"
    }
  }
}

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 7, 2026