Frankfurter

live DeveloperData

Frankfurter MCP — wraps Frankfurter API (api.frankfurter.dev)

4 tools
0ms auth
free tier 50 calls/day

Tools

get_latest

Get the latest foreign exchange rates from the ECB. Returns rates relative to a base currency. Example: get_latest(base: "USD", symbols: "EUR,GBP,JPY").

No parameters required.

Try it
get_historical

Get exchange rates for a specific historical date. ECB rates available from 1999-01-04 onward. Example: get_historical(date: "2024-01-15", base: "USD").

No parameters required.

Try it
get_timeseries

Get exchange rates over a date range for trend analysis. Returns daily rates between start and end dates. Example: get_timeseries(start_date: "2024-01-01", end_date: "2024-03-31", base: "USD", symbols

No parameters required.

Try it
list_currencies

List all currencies supported by the Frankfurter API (ECB reference rates). Returns currency codes and full names.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/frankfurter/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/frankfurter/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_latest","arguments":{}}}'