Currency exchange rates and conversion — current, historical, and all supported pairs via the Frankfurter API
Convert between 30+ currencies using the European Central Bank's reference rates via the Frankfurter API. Get current rates, convert amounts, look up historical rates back to 1999, and list all supported currencies.
| Tool | Purpose |
|---|---|
get_rate | Current exchange rate between two currencies (e.g., USD to EUR) |
convert | Convert a specific amount at today's rate |
get_historical_rate | Exchange rate on a specific date (YYYY-MM-DD format, back to 1999-01-04) |
get_currencies | List all supported currencies with full names |
convert with from=USD, to=JPY, amount=500curl -s -X POST https://gateway.pipeworx.io/exchange/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"convert","arguments":{"from":"EUR","to":"GBP","amount":1000}}}'
{
"from": "EUR",
"to": "GBP",
"amount": 1000,
"result": 858.42,
"rate": 0.85842,
"date": "2024-03-15"
}
{
"mcpServers": {
"pipeworx-exchange": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/exchange/mcp"]
}
}
}