Skip to main content
Glama

Market Intel MCP

fx_rates

Get the latest foreign-exchange rates for a base currency (default USD), optionally limited to specific target currencies. Source: European Central Bank reference rates.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
baseNo3-letter base currency, e.g. USD, EUR (default USD)
symbolsNoOptional comma-separated targets, e.g. EUR,GBP,JPY

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It does add meaningful behavioral context beyond the schema by disclosing the data source (European Central Bank reference rates), which implies provenance and periodic refresh. However, it does not disclose what happens with unknown currency codes, whether all rates are returned when symbols is omitted, or the response structure, which are gaps for a tool with zero annotation coverage.

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?

Two sentences with no filler: the verb, resource, default, and optional filtering are front-loaded, and the source attribution earns its place because it communicates data provenance. Nothing could be removed without losing information.

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 low-complexity tool with two optional parameters fully documented in the schema and no annotations, the description covers all invocation essentials: what is fetched, the base default, optional filtering, and data source. The only notable gap is the unstated return shape, since no output schema exists, but the tool is simple enough that an agent can proceed without it.

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 even with no parameter info in the description. The description merely reinforces what the schema already states (default USD base, optional comma-separated targets); it adds no new semantic detail such as accepted value formats beyond the schema's own examples.

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 names a specific verb ('Get'), a clear resource ('latest foreign-exchange rates'), and a scope ('for a base currency, optionally limited to specific target currencies'). The word 'latest' distinguishes it from the sibling tools fx_historical and fx_timeseries, while 'rates' separates it from fx_convert and fx_currencies, so an agent can pick it without opening schemas.

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 clear context — this is the current-rates tool with an ECB source and optional symbol filtering — so usage is implied. However, it never explicitly names alternatives or states when NOT to use it (e.g., 'for past dates use fx_historical'), leaving the agent to infer the boundary against siblings.

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

A3.9/5.0
Disambiguation5/5

Each tool targets a clearly distinct function: currency conversion, listing supported currencies, historical rates for a single date, latest rates, and time-series analysis. There is no meaningful overlap or ambiguity between the tool purposes.

Naming Consistency4/5

All tools share the consistent 'fx_' prefix and use snake_case, making the set feel cohesive. Minor inconsistency exists because some names are verbs (convert) while others are nouns (rates, currencies), but the pattern is still predictable and readable.

Tool Count5/5

Five tools form a well-scoped set for a foreign-exchange reference data server. Each tool earns its place by covering a distinct common FX lookup scenario without unnecessary redundancy.

Completeness4/5

The surface covers the core FX workflows: current rates, historical rates, time series, conversion, and currency metadata. Minor gaps exist, such as no explicit inverse-rate calculation or multiple base currencies in one request, but these are easily worked around with the provided convert and rates tools.