Skip to main content
Glama
jessicayanwang

Frankfurter MCP

Python 3.12+ pytest GitHub commits since latest release PyPI PyPI - Downloads

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-dev

Environment 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

LOG_LEVEL

[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.

HTTPX_TIMEOUT

[5.0] The time for the underlying HTTP client to wait, in seconds, for a response from the Frankfurter API.

HTTPX_VERIFY_SSL

[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 SSL_CERT_FILE and SSL_CERT_DIR variables to properly configure self-signed certificates.

FAST_MCP_HOST

[localhost] This variable specifies which host the MCP server must bind to unless the server transport (see below) is set to stdio.

FAST_MCP_PORT

[8000] This variable specifies which port the MCP server must listen on unless the server transport (see below) is set to stdio.

MCP_SERVER_TRANSPORT

[stdio] The acceptable options are stdio, sse or streamable-http. However, in the .env.template, the default value is set to stdio.

MCP_SERVER_INCLUDE_METADATA_IN_RESPONSE

[True] This specifies if additional metadata will be included with the MCP type TextContent that wraps the response data from each tool call. The additional metadata, for example, will include the API URL of the Frankfurter server, amongst others, that is used to obtain the responses.

FRANKFURTER_API_URL

[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 frankfurtermcp

Server 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.server

Server using Docker

There are two Dockerfiles provided in this repository.

  • local.dockerfile for containerising the Frankfurter MCP server.

  • smithery.dockerfile for 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-container

Upon 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.

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 --lts

Following that (install and) run the MCP Inspector by executing the following in the WD.

npx @modelcontextprotocol/inspector uv run frankfurtermcp

This 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_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.

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 install

Pull 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 tools
convert_currency_latestB
Read-only
Inspect

Converts an amount from one currency to another using the latest exchange rates.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYesThe amount in the source currency to convert.
from_currencyYesThe source currency ISO4217 code.
to_currencyYesThe target currency ISO4217 code.

TDQS

B3.3/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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_dateA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYesThe amount in the source currency to convert.
from_currencyYesThe source currency ISO4217 code.
to_currencyYesThe target currency ISO4217 code.
specific_dateYesThe specific date for which the conversion is requested in the YYYY-MM-DD format.

TDQS

A3.8/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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_ratesA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
base_currencyYesA base currency ISO4217 code for which rates are to be requested.
symbolsNoA 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_dateNoThe specific date for which the historical rates are requested in the YYYY-MM-DD format.
start_dateNoThe start date, of a date range, for which the historical rates are requested in the YYYY-MM-DD format.
end_dateNoThe end date, of a date range, for which the historical rates are requested in the YYYY-MM-DD format.

TDQS

A4.4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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_ratesB
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
base_currencyYesA base currency ISO4217 code for which rates are to be requested.
symbolsNoA 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

B3.4/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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_currenciesB
Read-only
Inspect

Returns a list of three-letter currency codes for the supported currencies.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

  1. 5 tool updates
    • First observedconvert_currency_latest
    • First observedconvert_currency_specific_date
    • First observedget_historical_exchange_rates
    • First observedget_latest_exchange_rates
    • First observedget_supported_currencies

TDQS

A4/5.0

Scored across 5 tools

Disambiguation5/5

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.

Naming Consistency5/5

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).

Tool Count5/5

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.

Completeness5/5

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

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides 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.
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables fetching real-time exchange rates between currencies and listing supported currency codes using the Frankfurter API.
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Wraps the Frankfurter API to enable currency exchange rate queries and conversions through natural language.
    6 npm
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables real-time currency exchange rate lookup, conversion, historical rates, and currency catalog using the free Frankfurter API, no API key required.
    1 npm
    ISC