com.thenextgennexus/fred-treasury-macro-data-mcp
Official5 toolsUS macro & Treasury data — FRED series, yield curve, auctions, and a macro dashboard.
Access US macroeconomic data, Treasury yields, and auction information.
Captured live from the server via tools/list.
get_fred_series
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.
Parameters (3)
- series_idstringrequired
- start_datestring
- end_datestring
get_treasury_yield_curve
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.
Parameters (1)
- datestring
get_upcoming_treasury_auctions
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)
Parameters (2)
- security_typestring
- days_aheadinteger
get_auction_results
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)
Parameters (4)
- auction_id_or_recentstring
- security_typestring
- days_backinteger
- limitinteger
get_macro_dashboard
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.
No parameters.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"fred-treasury-macro-data-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/fred-treasury-macro-data-mcp/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.