list_currencies
Pack: frankfurter · Endpoint: https://gateway.pipeworx.io/frankfurter/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/list_currencies for the schema, then POST the same URL with its arguments for the data.
List all currencies supported by the Frankfurter API (ECB reference rates). Returns currency codes and full names.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/frankfurter/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_currencies","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_currencies', {});
Response shape
Always returns: count, currencies
| Field | Type | Description |
|---|---|---|
count | integer | Total number of supported currencies |
currencies | array | List of supported currencies |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "integer",
"description": "Total number of supported currencies"
},
"currencies": {
"type": "array",
"description": "List of supported currencies",
"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": {
"frankfurter": {
"url": "https://gateway.pipeworx.io/frankfurter/mcp"
}
}
}
See Getting Started for client-specific install steps.