Skip to main content
Glama

exchange-rates-mcp-server

Fx Dataframe Describe

fx_dataframe_describe
Read-onlyIdempotent

List tables and columns staged on a DataCanvas from a prior fx_get_timeseries call. Required first step before fx_dataframe_query — use it to discover table names and column schemas. Requires DataCanvas (CANVAS_PROVIDER_TYPE=duckdb) — without it this tool is not listed at all and fx_get_timeseries returns every range inline.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
canvas_idYesCanvas ID returned by fx_get_timeseries. Re-run fx_get_timeseries to obtain a fresh canvas_id if this one has expired.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNoPresent when the call failed. Absent on success.
tablesNoAll tables and views currently staged on this canvas.
canvas_idNoThe canvas ID echoed back — use this in fx_dataframe_query.
expires_atNoISO 8601 timestamp when this canvas will be evicted.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is known. The description adds valuable behavioral context: the tool's dependency on DataCanvas, that it may not be listed without one, and that a canvas_id can expire (referenced in the schema). It goes beyond the annotations by explaining how the tool fits into a workflow and the consequences of missing prerequisites.

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 exactly two sentences, with the core purpose front-loaded and the conditional context provided in the second sentence. Every clause earns its place—no filler, no repetition of the tool name, and it efficiently packs purpose, usage, and environment constraints.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that an output schema exists (so return values are specified separately) and annotations cover read-only and idempotent behavior, the description provides all remaining context an agent needs: the tool's role, required first-step nature, prerequisite, and the fallback behavior if the prerequisite isn't met. Nothing essential is missing for a correct invocation.

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%, and the schema itself already documents canvas_id with guidance on expiration and where to get a fresh one. The tool description does not add further parameter details beyond what the schema provides. Since the schema handles parameter semantics fully, a baseline of 3 is appropriate.

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 states a specific verb and resource: 'List tables and columns staged on a DataCanvas.' It explicitly names the data source (prior fx_get_timeseries call) and clearly differentiates its role from sibling tools like fx_dataframe_query (which is the next step) and the fx_get_rates/currency tools. This leaves no ambiguity about what this tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit when-to-use guidance: 'Required first step before fx_dataframe_query — use it to discover table names and column schemas.' It also states a prerequisite (requires DataCanvas) and explains the alternative behavior if the prerequisite is missing ('fx_get_timeseries returns every range inline'). This fully orients an agent on when to call it versus relying on other tools.

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.6/5.0
Disambiguation5/5

Each tool has a distinct, non-overlapping purpose: conversion, single rate, bulk rates, timeseries, currency listing, and DataFrame inspection/query. The descriptions clearly differentiate between getting a rate vs converting an amount, and between inline vs DataCanvas-stored timeseries.

Naming Consistency5/5

All tools follow a consistent fx_verb_noun pattern (e.g., fx_get_rate, fx_convert_currency, fx_list_currencies). The two dataframe tools also adhere to fx_dataframe_verb, maintaining a uniform convention across the entire set.

Tool Count5/5

Seven tools is well-scoped for an exchange-rate server. Each tool addresses a needed operation (conversion, rates, timeseries, metadata) without redundancy or bloat, and adding DataFrame analysis feels justified for handling large datasets.

Completeness5/5

The surface covers the full lifecycle of exchange-rate queries: listing currencies, fetching single or bulk rates, converting with historical dates, and retrieving timeseries. The optional DataCanvas integration fills the gap for large-range analysis, leaving no obvious dead ends for common use cases.