Convert currencies, get FX rates, and query historical ECB exchange rate data.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Convert currencies, get FX rates, and query historical ECB exchange rate data via MCP. STDIO or Streamable HTTP.
Public Hosted Server: https://exchange-rates.caseyjhand.com/mcp
Eight tools for working with ECB FX rate data β currency lookup and disambiguation, point-in-time rates and conversions, historical time-series retrieval, and SQL analytics over the DataCanvas workspace that long time-series calls produce. Five are advertised by default; the three fx_dataframe_* tools need CANVAS_PROVIDER_TYPE=duckdb, and the destructive one among them additionally needs FX_ENABLE_CANVAS_DROP=true.
The three fx_dataframe_* tools require DataCanvas. With CANVAS_PROVIDER_TYPE unset (the default) they are not advertised in tools/list at all, so a client never sees a tool it cannot call; the HTTP landing page still lists them as disabled cards hinting CANVAS_PROVIDER_TYPE=duckdb, so operators can tell they exist. In that mode fx_get_timeseries returns every range inline:
| Tool | Description |
|---|---|
fx_list_currencies | List all ~30 ECB-supported ISO 4217 currencies with full names. Use before converting to disambiguate "dollars" (USD vs AUD vs CAD vs HKD vs SGD). |
fx_get_rates | Snapshot of all available rates for a base currency at latest or a historical date. Optional symbols filter for smaller responses; listing the base itself returns a rate of 1 for it. |
fx_get_rate | Exchange rate for a single currency pair at latest or a historical date. Surfaces date_snapped when a weekend/holiday request returns the prior business-day rate. |
fx_convert_currency | Convert an amount between any two currencies at latest or a historical rate. Cross-rates are triangulated through EUR. Returns converted amount, rate used, rate date, and whether the date was snapped. |
fx_get_timeseries | Historical daily rates for a currency pair over a date range, never including a date outside it. Short ranges (β€90 days) are returned inline; when DataCanvas is enabled, long ranges spill to it with a canvas_id for SQL follow-up. |
fx_dataframe_describe | List DataCanvas tables and their columns from a prior fx_get_timeseries call. Required first step before fx_dataframe_query. Needs CANVAS_PROVIDER_TYPE=duckdb. |
fx_dataframe_query | Run a read-only SQL SELECT against a DataCanvas table produced by fx_get_timeseries. Supports aggregations, GROUP BY, window functions, and JOINs across multiple registered tables. Needs CANVAS_PROVIDER_TYPE=duckdb. |
fx_dataframe_drop | Permanently remove one staged table or view from a DataCanvas. Deletes staged analytical data only β ECB rate data is untouched and the series can be re-staged. Needs CANVAS_PROVIDER_TYPE=duckdb and FX_ENABLE_CANVAS_DROP=true; disabled otherwise. |
fx_list_currenciesEnumerate all supported currencies before converting or querying.
[{ code, name }] for all ~30 ECB-scoped currenciesfx_get_ratesFull rates snapshot for a base currency in one call.
symbols parameter narrows the response to specific quote currenciessymbols is valid β it is answered locally with a rate of 1 rather than sent upstream, which keeps a self-quote from failingfx_get_ratePoint-in-time exchange rate for a single pair.
date_snapped: true when the API silently moved a weekend/holiday request to the prior business dayrate_date and date_snapped read the same as for any other pairfx_convert_currency when you need the converted amount; use this tool when you only need the rate numberfx_convert_currencyConvert an amount between any two currencies.
quote_amount, rate, rate_date, date_snapped, plus rate_type and source provenance on every responsefx_get_timeseries + fx_dataframe_describe / fx_dataframe_queryHistorical rate series and DataCanvas SQL analytics.
fx_get_timeseries returns a date-keyed series (business days only β ECB publishes once per business day):
FX_TIMESERIES_CANVAS_THRESHOLD_DAYS, default 90 days) β inline rates map + metadatacanvas_id, table_name, and spilled: true β the full series is registered as a DuckDB-backed table. Without CANVAS_PROVIDER_TYPE=duckdb a long range comes back inline with spilled: false and a notice saying the threshold was crossed but no canvas was configuredThe response never carries a date outside the requested range. Frankfurter snaps a range that opens on a weekend or bank holiday back to the prior publication day; those rows are dropped, so start_date and end_date always sit inside the window you asked for. A range covering only non-publication days therefore returns an empty rates map with rate_count: 0 and a notice explaining that the ECB published nothing in that window β distinguishable from an error.
Once a canvas_id is in hand:
fx_dataframe_describe β list the tables and columns on the canvas (required before fx_dataframe_query)fx_dataframe_query β run arbitrary SQL SELECT against the registered table; supports aggregations, GROUP BY, window functions, JOINs across tables from multiple fx_get_timeseries callsThe canvas uses a session-scoped TTL. To continue working with a prior series, call fx_get_timeseries again with the same parameters to obtain a fresh canvas_id.
| Type | Name | Description |
|---|---|---|
| Resource | fx://currencies | All supported currencies as a stable reference document. Injectable context for clients that support resources. |
| Resource | fx://rates/latest/{base} | Latest rates snapshot for a base currency as a stable URI. |
All resource data is also reachable via tools. Use fx_list_currencies or fx_get_rates for programmatic access.
Built on @cyanheads/mcp-ts-core:
unsupported_currency, date_out_of_range, canvas_not_found, missing_table, invalid_querynone, jwt, oauthECB FXβspecific:
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/exchange-rates-mcp-server)<a href="https://allmcps.com/mcp/exchange-rates-mcp-server"><img src="https://allmcps.com/api/badge/exchange-rates-mcp-server?style=directory" alt="Exchange Rates MCP Server on AllMCPs" /></a>