Frankfurter MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Frankfurter MCPconvert 100 USD to EUR"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Frankfurter MCP
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.
Installation
If your objective is to use the tools available on this MCP server, please refer to the usage > client sub-section below.
The directory where you clone this repository will be referred to as the working directory or WD hereinafter.
Install uv. To install the project with its minimal dependencies in a virtual environment, run the following in the WD. To install all non-essential dependencies (which are required for developing and testing), replace the --no-dev with the --all-groups flag in the following command.
uv sync --no-devEnvironment variables
Following is a list of environment variables that can be used to configure the application. A template of environment variables is provided in the file .env.template. Note that the default values listed in the table below are not always the same as those in the .env.template file.
The following environment variables can be specified, prefixed with FASTMCP_: HOST, PORT, DEBUG and LOG_LEVEL. See global configuration options for FastMCP. Note that on_duplicate_ prefixed options specified as environment variables will be ignored.
The underlying HTTP client also respects some environment variables, as documented in the HTTPX library. In addition, SSL_CERT_FILE and SSL_CERT_DIR can be configured to use self-signed certificates of hosted API endpoint or intermediate HTTP(S) proxy server(s).
Variable | [Default value] and description |
| [INFO] The level for logging. Changing this level also affects the log output of other dependent libraries that may use the same environment variable. See valid values at Python logging documentation. |
| [5.0] The time for the underlying HTTP client to wait, in seconds, for a response from the Frankfurter API. |
| [True] This variable can be set to False to turn off SSL certificate verification, if, for instance, you are using a proxy server with a self-signed certificate. However, setting this to False is advised against: instead, use the |
| [localhost] This variable specifies which host the MCP server must bind to unless the server transport (see below) is set to |
| [8000] This variable specifies which port the MCP server must listen on unless the server transport (see below) is set to |
| [stdio] The acceptable options are |
| [True] This specifies if additional metadata will be included with the MCP type |
| [https://api.frankfurter.dev/v1] If you are self-hosting the Frankfurter API, you should change this to the API endpoint address of your deployment. |
Usage
The following sub-sections illustrate how to run the Frankfurter MCP as a server and how to access it from MCP clients.
Related MCP server: Currency MCP Server
Server
While running the server, you have the choice to use stdio transport or HTTP options (sse or the newer streamable-http).
Using default settings and MCP_SERVER_TRANSPORT set to sse or streamable-http, the MCP endpoint will be available over HTTP at http://localhost:8000/sse for the Server Sent Events (SSE) transport, or http://localhost:8000/mcp for the streamable HTTP transport.
If you want to run Frankfurter MCP with stdio transport and the default parameters, execute the commands below without using the .env.template file.
Server with uv
Optional: Copy the .env.template file to a .env file in the WD, to modify the aforementioned environment variables, if you want to use anything other than the default settings. Or, on your shell, you can export the environment variables that you wish to modify.
Run the following in the WD to start the MCP server.
uv run frankfurtermcpServer with pip from PyPI package
Add this package from PyPI using pip in a virtual environment (possibly managed by uv, pyenv or conda) and then start the server by running the following.
Optional: Add a .env file with the contents of the .env.template file if you wish to modify the default values of the aforementioned environment variables. Or, on your shell, you can export the environment variables that you wish to modify.
pip install frankfurtermcp
python -m frankfurtermcp.serverServer using Docker
There are two Dockerfiles provided in this repository.
local.dockerfilefor containerising the Frankfurter MCP server.smithery.dockerfilefor deploying to Smithery AI, which you do not have to use.
To build the image, create the container and start it, run the following in WD. Choose shorter names for the image and container if you prefer.
If you change the port to anything other than 8000 in .env.template, do remember to change the port number references in the following command. Instead of passing all the environment variables using the --env-file option, you can also pass individual environment variables using the -e option.
docker build -t frankfurtermcp -f local.dockerfile .
docker create -p 8000:8000/tcp --env-file .env.template --expose 8000 --name frankfurtermcp-container frankfurtermcp
docker start frankfurtermcp-containerUpon successful build and container start, the MCP server will be available over HTTP at http://localhost:8000/sse for the Server Sent Events (SSE) transport, or http://localhost:8000/mcp for the streamable HTTP transport.
Cloud hosted servers
The currently available cloud hosted options are as follows.
FastMCP Cloud: https://frankfurtermcp.fastmcp.app/mcp
Glama.AI: https://glama.ai/mcp/servers/@anirbanbasu/frankfurtermcp
Smithery.AI: https://smithery.ai/server/@anirbanbasu/frankfurtermcp
Client access
This sub-section explains ways for a client to connect and test the FrankfurterMCP server.
The official MCP visual inspector
The MCP Inspector is an official Model Context Protocol tool that can be used by developers to test and debug MCP servers. This is the most comprehensive way to explore the MCP server.
To use it, you must have Node.js installed. The best way to install and manage node as well as packages such as the MCP Inspector is to use the Node Version Manager (or, nvm). Once you have nvm installed, you can install and use the latest Long Term Release version of node by executing the following.
nvm install --lts
nvm use --ltsFollowing that (install and) run the MCP Inspector by executing the following in the WD.
npx @modelcontextprotocol/inspector uv run frankfurtermcpThis will create a local URL at port 6274 with an authentication token, which you can copy and browse to on your browser. Once on the MCP Inspector UI, press Connect to connect to the MCP server. Thereafter, you can explore the tools available on the server.
Claude Desktop, Visual Studio, and so on
The server entry to run with stdio transport that you can use with systems such as Claude Desktop, Visual Studio Code, and so on is as follows.
{
"command": "uv",
"args": [
"run",
"frankfurtermcp"
]
}Instead of having frankfurtermcp as the last item in the list of args, you may need to specify the full path to the script, e.g., WD/.venv/bin/frankfurtermcp. Likewise, instead of using uv, you could also have the following JSON configuration with the path properly substituted for python3.12, for instance such as WD/.venv/bin/python3.12.
{
"command": "python3.12",
"args": [
"-m",
"frankfurtermcp.server"
]
}List of available MCP features
FrankfurterMCP has the following MCP features.
Tools
The following table lists the names of the tools as exposed by the FrankfurterMCP server. The descriptions shown here are for documentation purposes, which may differ from the actual descriptions exposed over the model context protocol.
Name | Description |
| Get a list of currencies supported by the Frankfurter API. |
| Get latest exchange rates in specific currencies for a given base currency. |
| Convert an amount from one currency to another using the latest exchange rates. |
| Get historical exchange rates for a specific date or date range in specific currencies for a given base currency. |
| Convert an amount from one currency to another using the exchange rates for a specific date. |
The required and optional arguments for each tool are not listed in the following table for brevity but are available to the MCP client over the protocol.
Contributing
Install pre-commit for Git and ruff. Then enable pre-commit by running the following in the WD.
pre-commit installPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Testing and coverage
To run the provided test cases, execute the following. Add the flag --capture=tee-sys to the command to display further console output.
uv run --group test pytest tests/There is a handy testing script WD/run-tests.sh, which will run all the tests and generate a coverage report as follows. It can also accept arguments and parameters to be passed to pytest, such as -k for filtering the tests to run. If all tests are run, the generated coverage report may look like the one below.
Name Stmts Miss Cover
----------------------------------------------------
src/frankfurtermcp/__init__.py 10 0 100%
src/frankfurtermcp/common.py 23 0 100%
src/frankfurtermcp/mixin.py 52 4 92%
src/frankfurtermcp/model.py 17 0 100%
src/frankfurtermcp/server.py 111 20 82%
tests/__init__.py 0 0 100%
tests/test_data_models.py 60 0 100%
tests/test_server.py 71 0 100%
----------------------------------------------------
TOTAL 344 24 93%License
MIT.
Project status
Following is a table of some updates regarding the project status. Note that these do not correspond to specific commits or milestones.
Date | Status | Notes or observations |
September 6, 2025 | active | Code refactoring and cleanup. |
June 27, 2025 | active | Successful remote deployments on Glama.AI and Smithery.AI. |
June 9, 2025 | active | Added containerisation, support for self-signed proxies. |
June 7, 2025 | active | Project started. Added tools to cover all the functionalities of the Frankfurter API. |
Available Tools
5 toolsconvert_currency_latestBRead-onlyInspect
Converts an amount from one currency to another using the latest exchange rates.
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | The amount in the source currency to convert. | |
| from_currency | Yes | The source currency ISO4217 code. | |
| to_currency | Yes | The target currency ISO4217 code. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide readOnlyHint=true and openWorldHint=true, indicating this is a safe read operation with potentially dynamic data. The description adds that it uses 'latest exchange rates', which implies real-time or recent data, but doesn't specify source, update frequency, or accuracy limitations. No contradiction with annotations exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's function without unnecessary words. It's front-loaded with the core action and includes the key constraint ('latest exchange rates').
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only tool with no output schema and rich schema coverage, the description is minimally adequate. It covers the basic operation but lacks details on output format (e.g., numeric result with currency), error handling, or sibling tool differentiation, which could aid the agent in proper usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with clear parameter descriptions and enums for currencies. The description adds no additional parameter semantics beyond what's in the schema, such as format examples or constraints. With high schema coverage, the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('converts') and resources ('amount from one currency to another'), and specifies it uses 'latest exchange rates'. However, it doesn't explicitly differentiate from its sibling 'convert_currency_specific_date', which is a similar conversion tool but for historical dates.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus its siblings. It mentions 'latest exchange rates' but doesn't explicitly state that this is for current conversions only, nor does it reference the historical alternative 'convert_currency_specific_date' or other related tools like 'get_latest_exchange_rates'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
convert_currency_specific_dateARead-onlyInspect
Convert an amount from one currency to another using the exchange rates for a specific date. If there is no exchange rate available for the specific date, the rate for the closest available date before the specified date will be used.
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | The amount in the source currency to convert. | |
| from_currency | Yes | The source currency ISO4217 code. | |
| to_currency | Yes | The target currency ISO4217 code. | |
| specific_date | Yes | The specific date for which the conversion is requested in the YYYY-MM-DD format. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds valuable behavioral context beyond annotations: it explains the fallback mechanism ('If there is no exchange rate available for the specific date, the rate for the closest available date before the specified date will be used'). Annotations provide readOnlyHint=true and openWorldHint=true, which the description doesn't contradict. The description enhances understanding of the tool's behavior with historical data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise and front-loaded: the first sentence states the core purpose, and the second sentence adds crucial behavioral detail about fallback logic. Every sentence earns its place with no wasted words. The structure is clear and efficient for an AI agent to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (currency conversion with date specificity), the description is reasonably complete. It covers the core purpose and important behavioral nuance (fallback logic). With annotations covering safety (readOnly) and data scope (openWorld), and no output schema, the description provides adequate context for an agent to understand when and how to use this tool, though it could benefit from more explicit sibling differentiation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with all parameters well-documented in the schema (amount, from_currency, to_currency, specific_date). The description doesn't add significant parameter semantics beyond what the schema already provides. It mentions 'specific date' but doesn't elaborate on format or constraints beyond the schema's YYYY-MM-DD format. Baseline 3 is appropriate given high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Convert an amount from one currency to another using the exchange rates for a specific date.' It specifies the verb (convert), resource (currency amount), and key constraint (specific date). However, it doesn't explicitly distinguish this from sibling tools like 'convert_currency_latest' beyond the date specificity implied in the name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool (when you need conversion for a specific historical date) through its focus on date-specific rates. However, it doesn't explicitly state when to choose this over alternatives like 'convert_currency_latest' or when not to use it (e.g., for real-time conversions). The fallback behavior for missing dates provides some context but not explicit comparative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_historical_exchange_ratesARead-onlyInspect
Returns historical exchange rates for a specific date or date range. If the exchange rates for a specified date is not available, the rates available for the closest date before the specified date will be provided. Either a specific date, a start date, or a date range must be provided. The symbols can be used to filter the results to specific currencies. If symbols are not provided, all supported currencies will be returned.
| Name | Required | Description | Default |
|---|---|---|---|
| base_currency | Yes | A base currency ISO4217 code for which rates are to be requested. | |
| symbols | No | A list of target currency ISO4217 codes for which rates against the base currency will be provided. If not provided, all supported currencies will be shown. | |
| specific_date | No | The specific date for which the historical rates are requested in the YYYY-MM-DD format. | |
| start_date | No | The start date, of a date range, for which the historical rates are requested in the YYYY-MM-DD format. | |
| end_date | No | The end date, of a date range, for which the historical rates are requested in the YYYY-MM-DD format. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint=true and openWorldHint=true, covering safety and data scope. The description adds valuable behavioral context: it explains fallback behavior ('closest date before' if unavailable), clarifies parameter requirements ('Either a specific date, a start date, or a date range must be provided'), and notes default behavior for symbols. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded with the core purpose. Each of the four sentences adds distinct value: purpose, fallback behavior, parameter requirements, and symbols filtering. There is no wasted text, and it efficiently covers key aspects without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (historical data with fallback logic) and rich schema/annotations, the description is mostly complete. It lacks details on output format (no output schema provided) and does not mention rate limits or authentication needs, but covers core usage, parameters, and behavior adequately for a read-only tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds meaningful semantics: it explains the relationship between date parameters (specific_date vs. start/end date range), clarifies that symbols filter results (with default to all currencies), and mentions the fallback logic for unavailable dates, which the schema does not cover.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Returns historical exchange rates for a specific date or date range.' It specifies the resource (historical exchange rates) and distinguishes from siblings like 'get_latest_exchange_rates' (historical vs. latest) and 'convert_currency_specific_date' (retrieval vs. conversion).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool: for historical rates, with date or date range input. It implicitly distinguishes from siblings by focusing on historical data, but does not explicitly name alternatives or state when not to use it (e.g., vs. 'get_latest_exchange_rates' for current rates).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_latest_exchange_ratesBRead-onlyInspect
Returns the latest exchange rates for specific currencies. The symbols can be used to filter the results to specific currencies. If symbols is not provided, all supported currencies will be returned.
| Name | Required | Description | Default |
|---|---|---|---|
| base_currency | Yes | A base currency ISO4217 code for which rates are to be requested. | |
| symbols | No | A list of target currency ISO4217 codes for which rates against the base currency will be provided. If not provided, all supported currencies will be shown. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, indicating safe read operations and open-world data. The description adds context about filtering with symbols and default behavior, but does not disclose additional behavioral traits such as rate limits, data freshness, or error handling. No contradiction with annotations exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with two sentences that are front-loaded and efficient. It avoids redundancy and wastes no words, though it could be slightly more structured by explicitly separating purpose from usage notes.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (simple read operation), rich annotations (readOnlyHint, openWorldHint), and high schema coverage, the description is adequate but lacks details on output format, data sources, or limitations. Without an output schema, it should ideally hint at the return structure, but annotations provide some safety context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with detailed descriptions and enums for both parameters. The description adds minimal value by mentioning that symbols filter results and default to all currencies if not provided, which is already implied in the schema. Baseline 3 is appropriate as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Returns') and resource ('latest exchange rates for specific currencies'). It distinguishes itself from historical tools but doesn't explicitly differentiate from sibling tools like 'get_supported_currencies' or 'convert_currency_latest' in terms of what makes this tool unique for retrieving rates versus conversion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides implied usage by explaining that symbols filter results and default behavior when symbols are not provided. However, it lacks explicit guidance on when to use this tool versus alternatives like 'get_historical_exchange_rates' or 'convert_currency_latest', and does not mention any prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_supported_currenciesBRead-onlyInspect
Returns a list of three-letter currency codes for the supported currencies.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, indicating a safe, non-destructive operation with stable data. The description adds minimal behavioral context by specifying the return format ('list of three-letter currency codes'), but doesn't cover aspects like response structure or potential limitations. No contradiction with annotations exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's function without any wasted words. It's front-loaded with the core action and resource, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (0 parameters, no output schema) and rich annotations (readOnlyHint, openWorldHint), the description is minimally adequate. It specifies the return content but lacks details on format (e.g., array structure) or usage context, which could be helpful despite the annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0 parameters and 100% schema description coverage, the input schema fully documents the lack of parameters. The description appropriately doesn't add parameter details, as none are needed, aligning with the baseline for zero parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Returns') and resource ('list of three-letter currency codes for the supported currencies'), making the purpose specific and understandable. It doesn't explicitly differentiate from siblings like 'get_historical_exchange_rates' or 'get_latest_exchange_rates', which focus on exchange rates rather than currency codes, so it misses full sibling distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention use cases like needing currency codes for conversion tools or how it differs from siblings that handle exchange rates, leaving the agent without explicit context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
5 tool updates
- First observed
convert_currency_latest - First observed
convert_currency_specific_date - First observed
get_historical_exchange_rates - First observed
get_latest_exchange_rates - First observed
get_supported_currencies
TDQS
Scored across 5 tools
Every tool has a clearly distinct purpose with no ambiguity. convert_currency_latest and convert_currency_specific_date handle currency conversion with different time contexts, while get_historical_exchange_rates, get_latest_exchange_rates, and get_supported_currencies provide different types of exchange rate data and metadata. The descriptions clearly differentiate their functions.
All tools follow a consistent verb_noun pattern with snake_case naming throughout. The naming convention is predictable and readable, with clear action-object relationships (e.g., convert_currency, get_exchange_rates, get_supported_currencies).
With 5 tools, this server is well-scoped for a currency exchange rate service. Each tool earns its place by covering distinct aspects of the domain: currency conversion (two variants), exchange rate retrieval (historical and latest), and currency metadata. This is an appropriate number for the purpose.
The tool surface provides complete coverage for a currency exchange rate API. It includes conversion operations (with time flexibility), data retrieval (historical and current), and metadata (supported currencies). There are no obvious gaps—agents can perform all expected currency exchange workflows without dead ends.
Maintenance
Related MCP Connectors
Convert currencies, get FX rates, and query historical ECB exchange rate data.
Latest and historical ECB foreign-exchange reference rates for 30+ currencies, via Frankfurter.
Frankfurter MCP — wraps Frankfurter API (api.frankfurter.dev)
Live and historical FX rates (ECB via Frankfurter) — paid per call (x402/credits), 2 tools
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides real-time and historical foreign exchange rates for 31+ currencies, enabling currency conversion, historical rate lookups, and time series analysis using data from the Frankfurter API.-
- FlicenseNot gradedqualityDmaintenanceEnables fetching real-time exchange rates between currencies and listing supported currency codes using the Frankfurter API.-
- AlicenseNot gradedqualityCmaintenanceWraps the Frankfurter API to enable currency exchange rate queries and conversions through natural language.6 npmMIT
- AlicenseNot gradedqualityCmaintenanceEnables real-time currency exchange rate lookup, conversion, historical rates, and currency catalog using the free Frankfurter API, no API key required.1 npmISC