MCP server acting as an interface to the Frankfurter API for currency exchange data.
If you want an AI assistant working directly with FrankfurterMCP, the frankfurtermcp mcp server is the bridge. MCP server acting as an interface to the Frankfurter API for currency exchange data.
Frankfurter is a useful API for latest currency exchange rates, historical data, or time series published by sources such as the European Central Bank. Should you have to access the Frankfurter API as tools for language model agents exposed over the Model Context Protocol (MCP), Frankfurter MCP is what you need.
Once connected, the assistant can call these 6 tools directly:
get_supported_currencies — Get a list of currencies supported by the Frankfurter APIget_latest_exchange_rates — Get latest exchange rates in specific currencies for a given base currencyconvert_currency_latest — Convert an amount from one currency to another using the latest exchange ratesget_historical_exchange_rates — Get historical exchange rates for a specific date or date range in specific currencies for a given base currencyconvert_currency_specific_date — Convert an amount from one currency to another using the exchange rates for a specific dategreet — Get a greeting from the FrankfurterMCP server. This is mostly used for internal testingThe server is distributed via npm as @modelcontextprotocol/inspector, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.
Before the server will start you need to supply 3 environment variables: FAST_MCP_HOST, FRANKFURTER_API_URL, FASTMCP_HOST. Keep credentials in your client's env block or a secrets manager rather than committing them.
Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. FrankfurterMCP sits in that group, and the shape of its toolset — get_supported_currencies, get_latest_exchange_rates, convert_currency_latest among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| get_supported_currencies | Get a list of currencies supported by the Frankfurter API. |
| get_latest_exchange_rates | Get latest exchange rates in specific currencies for a given base currency. |
| convert_currency_latest | Convert an amount from one currency to another using the latest exchange rates. |
| get_historical_exchange_rates | Get historical exchange rates for a specific date or date range in specific currencies for a given base currency. |
| convert_currency_specific_date | Convert an amount from one currency to another using the exchange rates for a specific date. |
| greet | Get a greeting from the FrankfurterMCP server. _This is mostly used for internal testing_. |
{
"mcpServers": {
"frankfurtermcp": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/inspector"],
"env": {
"FAST_MCP_HOST": "your-value",
"FRANKFURTER_API_URL": "your-value",
"FASTMCP_HOST": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| FAST_MCP_HOST | Endpoint or connection string the server talks to. | Optional |
| FRANKFURTER_API_URL | Endpoint or connection string the server talks to. | Yes |
| FASTMCP_HOST | Endpoint or connection string the server talks to. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.