Skip to main content
Glama

Antevo Executive Brief

Search macro indicators

search_macro_indicators
Read-onlyIdempotent

Find a macro-economic series by name or country — CPI, policy and market interest rates, equity indices, house prices, industrial production, commodities. Covers 180 countries, some back to 1920. Returns each series' ticker and the span it actually covers; pass the ticker to get_macro_series. country takes either a name ('Switzerland') or an ISO-3 code ('CHE'). Search first: there are tens of thousands of series and they cannot be listed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYes
countryNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds genuinely useful behavior beyond annotations: it returns the ticker and the span each series actually covers, discloses coverage breadth (180 countries, some back to 1920), and explains that series cannot be listed — only searched. No contradiction with annotations.

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?

Five sentences, each earning its place: purpose with examples, coverage scope, return value plus downstream workflow, country parameter format, and a usage directive. The description is dense but efficient, front-loaded with the core purpose, and uses compact formatting (em-dashes, semicolons) without waste.

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?

With an output schema present, return-structure details are already covered. The description addresses search semantics, geographic and temporal coverage, the ticker+span return behavior, the next-step workflow, and the country parameter format. The only notable gap is the undocumented `limit` parameter, which is a minor omission for a search tool of this profile.

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 0%, so the description must carry the documentation burden. The `country` parameter is explicitly documented with format and examples ('Switzerland' or 'CHE'). The `query` parameter is only implicitly defined through the examples (CPI, commodities), not formally described. The `limit` parameter is entirely undocumented, leaving its behavior and default semantics unexplained.

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 opening clause 'Find a macro-economic series by name or country' names a specific verb, resource, and scope, followed by concrete examples (CPI, interest rates, equity indices) that pin down the domain. It also differentiates itself from the sibling get_macro_series by positioning this tool as the search entry point ('pass the ticker to get_macro_series').

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?

'Search first: there are tens of thousands of series and they cannot be listed' is an explicit directive that tells the agent when this tool is the correct entry point. The instruction to pass the returned ticker to get_macro_series provides a clear workflow with the most relevant sibling. However, it does not explicitly mention when not to use this tool versus other siblings like get_indices or list_coverage.

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/5.0
Disambiguation4/5

Most tools map clearly to distinct resources: get_* for retrieval, list_* for enumeration, search_* for lookup, track_* for time series. Some overlap exists between get_executive_brief, get_executive_note, and get_executive_desk, and between get_indices and get_market_snapshot, but descriptions clarify the intended use. Overall an agent can usually tell which tool to pick with little ambiguity.

Naming Consistency5/5

Tool names follow a highly consistent snake_case verb_noun pattern: get_, list_, search_, and track_ prefixes clearly indicate the operation. Resource nouns like executive_brief, risk_radar, world_events, and macro_series are descriptive and predictable. There are no mixed conventions or vague verbs.

Tool Count4/5

Fifteen tools is on the higher end but remains within a reasonable range for a server covering briefs, notes, coverage areas, macro data, market snapshots, and risk tracking. Each tool has a plausible purpose, though a few could arguably be consolidated, such as the separate executive brief/note/desk retrieval tools. The count does not feel bloated or excessive for the stated scope.

Completeness4/5

The tool surface covers the core lifecycle of the domain: listing and retrieving briefs, coverage, macro series, indices, risk radars, and world events, plus search for macro indicators. Minor gaps exist, such as no way to search editorial briefs or coverage notes by keyword, and no direct retrieveal of catalysts beyond a forward horizon. These are workable gaps and do not prevent most agent workflows.

Resources