get_currencies
Pack: exchange · Endpoint: https://gateway.pipeworx.io/exchange/mcp
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
| Field | Type | Description |
|---|---|---|
count | integer | Total number of supported currencies |
currencies | array | List 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.