Skip to main content
Glama

fred-treasury-macro-data-mcp

Server Details

US macro & Treasury data — FRED series, yield curve, auctions, and a macro dashboard.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.4/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation4/5

Most tools have distinct purposes: auction results vs upcoming auctions, yield curve vs dashboard snapshot. However, get_fred_series can retrieve Treasury yields and auction-related data, overlapping with the other specialized tools, causing minor ambiguity.

Naming Consistency5/5

All tool names follow a consistent 'get_' prefix with snake_case nouns describing the data (e.g., get_auction_results, get_treasury_yield_curve). No deviations or mixed conventions.

Tool Count5/5

Five tools is well-suited for this domain: two for auctions (past and future), one for yield curves, one for a macro dashboard, and one generic FRED series fetcher. The scope is focused and each tool serves a clear purpose.

Completeness5/5

The tool set covers core macro and Treasury data operations: historical auction results, upcoming auctions, yield curves, a combined dashboard, and the ability to fetch any FRED series. No obvious gaps exist for read-only data retrieval.

Available Tools

5 tools
get_auction_resultsA
Read-only
Inspect

Treasury auction results — stop-out yield, bid-to-cover ratio, allotments, primary-dealer take.

Args: auction_id_or_recent: "recent" for the latest auctions, or a CUSIP to look up that issue. security_type: "all", "Bill", "Note", "Bond", "TIPS", "FRN", or "CMB" days_back: how many days of historical results to consider (default 30) limit: max results to return (default 25)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
days_backNo
security_typeNoall
auction_id_or_recentNorecent
Behavior4/5

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

Annotations already declare readOnlyHint=true. Description adds detail on returned fields and parameter behavior (e.g., 'recent' as a special value, security_type options). Does not mention potential side effects or rate limits, but read-only nature reduces need.

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?

Description is very concise: one-line summary followed by a numbered list of parameters. No unnecessary words, front-loaded with key information.

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 read-only data retrieval tool with 4 optional parameters and no output schema, the description covers purpose, parameters, and output fields. No obvious gaps given the tool's simplicity and annotations.

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

Parameters5/5

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

Input schema has 0% description coverage (no property descriptions). The description compensates fully by explaining each parameter: auction_id_or_recent can be 'recent' or CUSIP, security_type lists valid strings, days_back and limit with defaults and meanings.

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?

Description clearly states the tool returns 'Treasury auction results' with specific metrics (stop-out yield, bid-to-cover ratio, etc.). It distinguishes from siblings like get_upcoming_treasury_auctions (future auctions) and get_treasury_yield_curve (yield curve) by focusing on historical results with specific fields.

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?

Description provides context on when to use: for historical auction results, and mentions 'recent' for latest auctions. Does not explicitly exclude other tools, but the specific output fields and parameter options imply appropriate use cases.

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

get_fred_seriesA
Read-only
Inspect

Fetch a FRED economic data series — CPI, GDP, unemployment, fed funds rate, anything in FRED.

Args: series_id: FRED series id (examples: "CPIAUCSL" = CPI, "GDP" = GDP, "UNRATE" = unemployment, "FEDFUNDS" = effective fed funds rate, "DGS10" = 10Y Treasury, "T10Y2Y" = 10y-2y spread, "M2SL" = M2 money supply, "PAYEMS" = nonfarm payrolls, "DFF" = daily fed funds) start_date: ISO date (YYYY-MM-DD). Defaults to default_lookback_days ago. end_date: ISO date (YYYY-MM-DD). Defaults to today.

ParametersJSON Schema
NameRequiredDescriptionDefault
end_dateNo
series_idYes
start_dateNo
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint. The description adds context: parameter defaults and examples. No contradictions. It could mention rate limits or error handling but is sufficient.

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 concise with a clear purpose, followed by an Args section that lists parameters succinctly. Every sentence adds value with no 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?

For a simple data retrieval tool, the description covers parameter semantics and usage. It does not describe return format, but that is acceptable given no output schema. Slight gap in completeness but overall strong.

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

Parameters5/5

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

Schema coverage is 0%, but the description fully compensates by explaining series_id with 9 examples, start_date and end_date with formats and defaults. This adds critical meaning beyond the schema.

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 explicitly states 'Fetch a FRED economic data series' with a clear verb and specific resource, followed by concrete examples (CPI, GDP, etc.). It effectively distinguishes from sibling tools which are about auctions and treasury.

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?

The description implies when to use (for any FRED series) through examples and defaults, but lacks explicit 'when-not-to-use' or alternatives. Given distinct siblings, it's clear, but not exhaustive.

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

get_macro_dashboardA
Read-only
Inspect

One-call combined macro snapshot for AI trading agents.

Returns: latest 10Y Treasury yield, full yield curve, CPI YoY, headline unemployment, effective fed funds rate, and the 5 most recent Treasury auction results. Designed so an LLM can answer "what's the macro picture right now?" with one tool-call.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already provide readOnlyHint=true, indicating no side effects. The description adds value by enumerating the exact data returned (list of economic indicators), which goes beyond the annotation. No contradictory behavior is mentioned.

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 two sentences: first states the tool's essence, second lists return data, third explains design intent. It is front-loaded and every sentence adds value without redundancy.

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 no parameters and no output schema, the description completely specifies what the tool returns with a clear list. It distinguishes from siblings, and the context is sufficient for an agent to decide to use it. Annotations cover safety.

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?

There are no parameters, and schema coverage is 100% (trivial). The description does not need to add parameter semantics but provides context on the tool's purpose, which is sufficient. Baseline for 0 params is 4.

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 clearly states the tool returns a combined macro snapshot including specific data points (10Y yield, yield curve, CPI, unemployment, fed funds rate, auction results). It distinguishes itself from siblings by being a 'one-call combined' tool, with siblings focusing on individual data sources like auction results or FRED 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?

The description explicitly states the tool is 'designed so an LLM can answer what's the macro picture right now?' with one call, implying usage context. However, it does not explicitly state when not to use it or name alternatives, though sibling tools are implied for specific data needs.

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

get_treasury_yield_curveA
Read-only
Inspect

Full US Treasury par yield curve (1mo, 2mo, 3mo, 4mo, 6mo, 1y, 2y, 3y, 5y, 7y, 10y, 20y, 30y) for a date.

Args: date: ISO date (YYYY-MM-DD). Defaults to most recent business day on or before today.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateNo
Behavior4/5

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

Annotations indicate readOnlyHint and openWorldHint. The description adds context about the data being a 'par yield curve' for specific maturities and explains default date behavior. No contradictions.

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 a single sentence followed by an Args block, with no wasted words. Purpose is front-loaded.

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?

The tool has no output schema, but the description lists maturities, implying the return will include those points. It could mention the return format (yields), but the name 'yield curve' makes it reasonably clear.

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

Parameters5/5

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

The schema provides no description for the 'date' parameter (0% coverage). The description explains it expects ISO date format and defaults to the most recent business day, adding critical meaning.

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 explicitly states 'Full US Treasury par yield curve' and lists all maturities. It clearly distinguishes from siblings which cover auctions, FRED series, macro dashboard, and upcoming auctions.

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 implies usage for yield curve data but does not explicitly state when to use or not use sibling tools. However, siblings are sufficiently different in domain, making implicit differentiation adequate.

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

get_upcoming_treasury_auctionsA
Read-only
Inspect

Treasury securities auction calendar — upcoming auctions in the next N days.

Args: security_type: "all", "Bill", "Note", "Bond", "TIPS", "FRN", or "CMB" days_ahead: how many days of upcoming auctions to return (default 30, max ~180)

ParametersJSON Schema
NameRequiredDescriptionDefault
days_aheadNo
security_typeNoall
Behavior3/5

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

Annotations already provide readOnlyHint=true and openWorldHint=true, which cover the safety profile. The description adds parameter details but no additional behavioral traits like caching or pagination. Since annotations carry the burden, a 3 is appropriate.

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 clear sentences plus a parameter list. No wasted words. The main purpose is front-loaded.

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?

Given no output schema, the description could mention what the returned data contains (e.g., dates, details). But for a simple calendar tool, parameter info is sufficient. Completeness is adequate but not exceptional.

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 description coverage is 0%, so the description must compensate. It lists allowed values for security_type and specifies default and max for days_ahead, adding meaning beyond the schema's type and default fields.

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 clearly states it retrieves an auction calendar of upcoming treasury securities, with specific parameters. The title in annotations further clarifies. Sibling tools are distinct (auction results, yield curve, etc.), so no confusion.

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?

The description implies usage for viewing upcoming auctions, but lacks explicit when-to-use or when-not-to-use guidance. However, sibling tool names are sufficiently different to indicate context.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    Macro economic intelligence MCP — 13 tools powered by 86 FRED series + ECB data covering Fed rates, inflation (CPI/PCE), yield curve, GDP, recession probability, and regime classification. Every response ES256K signed.
    1
  • A
    license
    A
    quality
    C
    maintenance
    Recession probability, capital rotation, macro cascade analysis, and real-time economic data for Claude, ChatGPT, Cursor, and any MCP client.
    23
    387
    1
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Provides AI assistants with clean access to 58 US macroeconomic indicators from the FRED database, with pre-computed changes and no need to know series IDs.
    8
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources