get_currencies

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

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_currencies for the schema, then POST the same URL with its arguments for the data.

List all supported currencies with codes and full names. Use to verify currency codes before converting or checking rates.

Example call

Arguments

{}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_currencies', {});

Response shape

Always returns: count, currencies

FieldTypeDescription
countintegerTotal number of supported currencies
currenciesarrayList of supported currencies sorted by code
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Total number of supported currencies"
    },
    "currencies": {
      "type": "array",
      "description": "List of supported currencies sorted by code",
      "items": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "description": "Currency code"
          },
          "name": {
            "type": "string",
            "description": "Full currency name"
          }
        },
        "required": [
          "code",
          "name"
        ]
      }
    }
  },
  "required": [
    "count",
    "currencies"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 23, 2026