Skip to main content
Glama
Vilgar

Rate-API MCP Server

by Vilgar

get_latest_rates

Retrieve current exchange rates for a base currency, with optional filtering to specific target currencies.

Instructions

Get the latest exchange rates for a base currency. Returns rates for all currencies (or a filtered subset).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
baseNoBase currency ISO code (e.g. USD, EUR). Defaults to USD.
symbolsNoComma-separated target codes to limit the result (e.g. 'EUR,GBP,JPY').

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.1

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 behavioral burden. It discloses that the tool returns all currencies or a filtered subset and implies a read-only operation, but it does not mention response shape, rate timing, defaults beyond the schema, or error/limit behavior.

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 short sentences with the core purpose front-loaded. The first sentence explains what the tool does, and the second clarifies output scope. No filler or redundant phrases.

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 tool with two optional, fully documented parameters, the description provides enough to invoke it correctly. It could be more complete by explicitly contrasting itself against historical or timeseries siblings, but nothing essential to basic invocation is missing.

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 both parameters are already documented. The description only repeats 'base currency' and 'filtered subset' without adding new semantic details, so it stays at the baseline.

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 is specific: it names the verb 'get', the resource 'latest exchange rates', and the operating scope 'for a base currency'. This clearly distinguishes it from siblings like get_historical_rates, get_timeseries_rates, and get_pair_rate.

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?

There is no explicit when-to-use guidance or mention of alternatives. The word 'latest' implies this is for current rates rather than historical or timeseries data, but the guidance is implicit rather than stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.