Currency Rates (ECB)
Server Details
Latest and historical ECB foreign-exchange reference rates for 30+ currencies, via Frankfurter.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolsget_currenciesARead-onlyInspect
List all supported currencies. Returns every supported ISO 4217 currency code with its full English name. Returns: Map of currency code to currency name..
| 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 destructiveHint=false. The description adds that the return value is a map of currency code to name, providing useful context beyond annotations. No contradictions.
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 brief and front-loaded with the main verb. However, the second and third sentences are somewhat redundant (both mention code and name), and there is a minor typo with double period.
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?
No output schema exists, so the description carries the burden of explaining return values. It states the map structure and content, and for a zero-parameter read-only tool this is sufficient.
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?
The tool has zero parameters, so the baseline is 4. The description accurately describes the fixed output without needing parameter clarification.
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 lists all supported currencies, providing ISO 4217 codes and English names. This distinct purpose is obvious against sibling tools that focus on rates.
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 states what the tool does but offers no explicit comparison to get_historical_rates or get_latest_rates. Usage context is implied by the tool name and sibling set, but no when-to-use vs alternatives guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_historical_ratesARead-onlyInspect
Get exchange rates for a past date. Returns the ECB reference rates that were published on (or nearest before) the given date. Returns: Historical reference rates for the requested date..
| Name | Required | Description | Default |
|---|---|---|---|
| base | No | Base currency as an ISO 4217 code. Defaults to EUR. | |
| date | Yes | Date in YYYY-MM-DD format, e.g. 2024-01-15. | |
| symbols | No | Comma-separated ISO 4217 codes to limit the response to. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool as read-only/non-destructive. The description adds valuable context about returning rates on or nearest before the given date, but omits details on response format or error cases. It does not contradict 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 short and front-loaded with a clear action, but the final 'Returns:' line is redundant with the preceding sentence and includes a typo, so it doesn't fully earn its place.
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 simple read-only tool, it covers key behavioral details like the 'nearest before' logic and clearly states the return type. However, without an output schema, a bit more detail on the structure of returned rates would be beneficial, though not critical.
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 all parameters are already documented. The tool description does not add further meaning to the parameters beyond what the schema provides, warranting the baseline score of 3.
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 fetches exchange rates for a past date, specifies ECB reference rates, and highlights the 'nearest before' behavior, distinguishing it from tools like get_latest_rates.
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 context for when to use this tool is clear (for past dates), but it does not explicitly mention alternatives or exclusionary guidance. Still, the purpose is unambiguous enough to imply correct usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_latest_ratesARead-onlyInspect
Get the latest exchange rates. Returns the most recent ECB reference rates. The base currency defaults to EUR unless "base" is given. Returns: Latest reference rates keyed by currency code..
| Name | Required | Description | Default |
|---|---|---|---|
| base | No | Base currency as an ISO 4217 code, e.g. USD or EUR. Defaults to EUR. | |
| symbols | No | Comma-separated ISO 4217 codes to limit the response to, e.g. "CNY,JPY,GBP". Omit to get all currencies. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds value by specifying the data source (ECB), the default base currency, and the return format (keyed by currency code). This goes beyond a simple 'get' and provides useful behavioral context without contradicting 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 short and gets to the point quickly. However, it has redundancy ('Returns the most recent...' and later 'Returns: Latest...') and a minor punctuation issue (double period). It's still efficient and front-loaded, but loses a point for not being as polished as it could be.
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 simple read-only tool with high schema coverage and no output schema, the description is largely complete: it covers purpose, source, default behavior, and return format. It doesn't elaborate on symbols usage or potential error responses, but those are adequately covered by the schema and the tool's simplicity. A 5 would require explicit mention of exactly when to use this over alternatives.
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 repeats that base defaults to EUR, which is already in the schema, but does not add new semantic detail for either parameter. It does not explain symbols further or clarify edge cases, so it neither compensates nor subtracts.
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 fetches the latest exchange rates, specifically the most recent ECB reference rates. This distinguishes it from sibling tools like get_historical_rates (historical data) and get_currencies (currency metadata), making the purpose unambiguous.
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: for current/latest rates. While it doesn't explicitly contrast with historical rates or list alternative tools, the context is clear and the sibling name 'get_historical_rates' reinforces the distinction. It lacks an explicit exclusion statement, preventing a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Fetch latest and historical currency exchange rates from Frankfurter. Convert amounts between curr…
Live and historical FX rates (ECB via Frankfurter) — paid per call (x402/credits), 2 tools
Convert currencies, get FX rates, and query historical ECB exchange rate data.
Live & historical FX rates for AI agents, from European Central Bank data. No API keys.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceProvides live and historical foreign-exchange rates from the European Central Bank via Frankfurter API, enabling currency conversion, rate lookup, and trend analysis without API keys.MIT
- 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.
- AlicenseAqualityDmaintenanceProvides access to currency exchange rates and conversion tools using the Frankfurter API, including latest rates, historical data, and time series from sources like the European Central Bank.5MIT
- FlicenseNot gradedqualityDmaintenanceEnables fetching real-time exchange rates between currencies and listing supported currency codes using the Frankfurter API.
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool serves a distinctly different purpose: listing available currencies, fetching historical rates, and fetching latest rates. No overlap or ambiguity exists between them.
All tools follow the consistent verb_noun pattern 'get_' + resource (currencies, historical_rates, latest_rates). This makes the API predictable and easy to navigate.
With only 3 tools, the server is tightly scoped to its purpose of providing ECB reference rates. Each tool is essential and contributes to a well-rounded API without unnecessary bloat.
The server fully covers the domain of ECB reference rates: you can list supported currencies, retrieve latest rates, and retrieve historical rates. No obvious gaps exist for the stated purpose.