Simple currency exchange rates — all rates for a base currency or a direct pair lookup via open.er-api.com
A lightweight exchange rate service. Get all rates for a base currency in one call, or fetch a specific currency pair. Uses data from open.er-api.com with rates updated daily.
get_rates — All exchange rates relative to a base currency (e.g., "USD" returns rates for EUR, GBP, JPY, and 150+ others)get_pair — Direct exchange rate between two specific currenciesexchange packThis pack is simpler — no historical rates or amount conversion, just current rates. Use this when you need a quick rate check or a full rate table. Use the exchange pack when you need conversion math or historical data.
curl -s -X POST https://gateway.pipeworx.io/exchangerate/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_rates","arguments":{"base":"USD"}}}'
{
"mcpServers": {
"pipeworx-exchangerate": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/exchangerate/mcp"]
}
}
}