Skip to main content
Glama

FinBridge

Get US Macro Snapshot (FRED)

get_fred_snapshot
Read-only

Fetch a predefined set of key US macro indicators from FRED in one call: latest value, previous value, and date for each series.

Args:

  • set: which indicator set (default us_core)

    • us_core: FEDFUNDS (Fed funds rate), DGS10, DGS2, T10Y2Y (10Y-2Y spread), CPIAUCSL (CPI YoY %), UNRATE, PAYEMS (monthly payroll change), DEXKOUS (KRW per USD)

    • rates: FEDFUNDS, DGS2, DGS10, DGS30, T10Y2Y, MORTGAGE30US, SOFR

    • inflation: CPIAUCSL, CPILFESL, PCEPI, PCEPILFE, PPIACO (all as % change from year ago)

    • labor: UNRATE, PAYEMS (change), ICSA (initial claims), CIVPART, AHETPI (wages YoY %)

Returns: {set, as_of, indicators:[{id, title, value, prev, date, units}], source}. 'value' is the latest non-null observation, 'prev' the one before it.

Examples:

  • "how does the US economy look right now" -> {set:'us_core'}

  • "current US rate complex" -> {set:'rates'}

  • Don't use for historical analysis or non-listed series — use get_fred_series instead.

Errors: individual unavailable series are reported in 'notes' without failing the whole snapshot; missing FRED_API_KEY returns a hint to obtain a free key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
setNoIndicator set: us_core (default) | rates | inflation | laborus_core

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
setNo
as_ofNo
sourceYes
indicatorsYes

Schema Changelog

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

  1. First observed

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already mark it read-only and open-world, and the description adds meaningful behavior: 'value' is the latest non-null observation with 'prev' being the one before it, partial failures degrade to 'notes' rather than failing the whole snapshot, and missing FRED_API_KEY surfaces a hint. This is more than the annotations alone provide.

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 dense but well-organized into Args, Returns, Examples, and Errors, with the core purpose front-loaded. Every section contributes operational knowledge rather than restating the name or schema.

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?

For a one-parameter, read-only snapshot tool with an output schema, the description is complete: it defines the return shape, explains degraded behavior, names the alternative for historical/flexible queries, and covers the API-key prerequisite. Nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the single set parameter already has an enum and default, so the baseline is 3; the description adds real value by itemizing exactly which indicators each set contains and clarifying transformations such as CPI YoY %. This makes choosing the correct set much easier.

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 opens with a specific verb and resource: 'Fetch a predefined set of key US macro indicators from FRED in one call' and enumerates exact series by set. It clearly distinguishes this snapshot tool from get_fred_series by emphasizing predefinition and single-call behavior.

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?

It provides explicit selection guidance: 'Don't use for historical analysis or non-listed series — use get_fred_series instead,' plus natural-language examples that map to set values. This tells an agent exactly when to invoke this tool versus its closest sibling.

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

Most tools have clearly distinct resource+action targets, and the overlapping screen_* tools are thoroughly cross-referenced with 'use screen_X instead' guidance. Minor ambiguity exists between get_disclosure_feed, get_dart_filings, and get_dart_major_events, which all surface KR filings from different angles but remain distinguishable.

Naming Consistency5/5

Every tool follows a consistent verb_noun snake_case pattern: get_* for retrievers, screen_* for screeners, search_* for lookups, plus action verbs like analyze_, backtest_, compare_, import_, and query_. Subfamilies (dart_*, edgar_*, fred_*, crypto_*) are consistently prefixed, making tool selection predictable.

Tool Count3/5

37 tools is heavy, and the four momentum screeners (canslim/kell/minervini/schwartz) plus three KR disclosure tools could arguably be collapsed into parameterized variants. However, the server's unusually broad scope—KR/US/TW/JP/EU equities, crypto, macro, portfolio, backtesting—means most tools earn their place, so the count is high but not chaotic.

Completeness4/5

The surface covers the core workflow well: search, prices, fundamentals, filings, insider trades, valuation, screeners, backtesting, and portfolio tracking for KR/US, plus crypto and macro. Notable gaps are the lack of single-company financial-statement tools for TW/JP/EU (only available through screen_companies) and no real-time stock quotes, but these are workable for the stated local-database research purpose.

Resources