
fred-mcp-server
by stefanoamorelli·★ 92·Score 49
FRED MCP Server provides universal access to Federal Reserve Economic Data through three powerful tools.
Overview
The fred-mcp-server is a well-maintained MCP server that provides access to over 800,000 Federal Reserve Economic Data series through three comprehensive tools: fred_browse, fred_search, and fred_get_series. It's written in TypeScript with a professional documentation structure including installation guides, configuration options, and API references. The server offers multiple deployment options including direct installation, Docker, and HTTP transport.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server when you need access to authoritative US economic data for research, financial analysis, or educational purposes without building custom API integrations.
When NOT to choose this
Avoid this if you need non-US economic data or if you require write access to the data source as this is a read-only API wrapper.
Tools this server exposes
3 tools extracted from the READMEfred_browseBrowse FRED's complete catalog through categories, releases, or sources.
fred_searchSearch for FRED economic data series by keywords, tags, or filters.
fred_get_seriesRetrieve data for any FRED series by its ID with support for transformations and date ranges.
Comparable tools
Installation
Installation
Via Smithery
npx -y @smithery/cli install @stefanoamorelli/fred-mcp-server --client claudeManual Installation
- Clone the repository:
git clone https://github.com/stefanoamorelli/fred-mcp-server.git
cd fred-mcp-server- Install dependencies:
pnpm install- Build the project:
pnpm buildConfiguration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"FRED MCP Server": {
"command": "/usr/bin/node",
"args": [
"<PATH_TO_YOUR_CLONED_REPO>/fred-mcp-server/build/index.js"
],
"env": {
"FRED_API_KEY": "<YOUR_API_KEY>"
}
}
}
}FAQ
- Where can I get a FRED API key?
- You can obtain a FRED API key from the FRED website at https://fred.stlouisfed.org/docs/api/api_key.html
- Can I use this server with other MCP clients besides Claude Desktop?
- Yes, the server supports stdio transport for all MCP clients and HTTP transport for network deployments
Compare fred-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.