Fred
live GovernmentDataFRED MCP — Federal Reserve Economic Data (St. Louis Fed)
Tools
fred_get_series Get observations (data points) for a FRED series. Key housing series: MORTGAGE30US (30-year mortgage rate), HOUST (housing starts), CSUSHPISA (Case-Shiller home price index), MSPUS (median home sale p
No parameters required.
Try it
fred_search Search for FRED series by keyword. Useful for discovering series IDs for housing, employment, inflation, and other economic data.
No parameters required.
Try it
fred_series_info Get metadata about a FRED series: title, units, frequency, seasonal adjustment, notes, and date range.
No parameters required.
Try it
fred_category Browse FRED categories. Use category_id=0 for the root. Useful for exploring available data by topic (housing = 97, money/banking/finance = 32991, population/employment/labor = 10).
No parameters required.
Try it
fred_releases Get the latest FRED data releases. Shows upcoming and recent releases of economic data.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/fred/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/fred/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"fred_get_series","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("fred_get_series", {}); // Or ask in plain English:
const answer = await px.ask("fred mcp — federal reserve economic data (st"); Related compound tools
These combine Fred with other data sources in a single call:
Trade Intel MCP — Compound tools that chain Comtrade, Census, Treasury,
3 tools — trade_bilateral_analysis, trade_country_profile, trade_macro_dashboard
FinTech Intel MCP — Compound tools that chain SEC, CFPB, FDIC,
3 tools — fintech_company_deep_dive, fintech_bank_health_check, fintech_market_snapshot
Housing Intel MCP — Meta-pack that chains FRED, BLS, ATTOM, and HUD APIs
7 tools — housing_market_snapshot, housing_property_report, housing_rental_analysis, housing_affordability_check, housing_employment_outlook, housing_signal_scan, housing_mortgage_history