Skip to main content
Glama

Currency Rates (ECB)

get_latest_rates

Read-only

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
baseNoBase currency as an ISO 4217 code, e.g. USD or EUR. Defaults to EUR.
symbolsNoComma-separated ISO 4217 codes to limit the response to, e.g. "CNY,JPY,GBP". Omit to get all currencies.

TDQS

A4.1/5.0
Behavior4/5

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.

Conciseness4/5

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.

Completeness4/5

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.

Parameters3/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 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.

Purpose5/5

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.

Usage Guidelines4/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: 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.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool serves a distinctly different purpose: listing available currencies, fetching historical rates, and fetching latest rates. No overlap or ambiguity exists between them.

Naming Consistency5/5

All tools follow the consistent verb_noun pattern 'get_' + resource (currencies, historical_rates, latest_rates). This makes the API predictable and easy to navigate.

Tool Count5/5

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.

Completeness5/5

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.

Resources