Skip to main content

A fully-featured FRED MCP server.

Project description

Federal Reserve Economic Data MCP Server

[!NOTE] This open-source project is not affiliated with, sponsored by, or endorsed by the Federal Reserve or the Federal Reserve Bank of St. Louis. "FRED" is a registered trademark of the Federal Reserve Bank of St. Louis, used here for descriptive purposes only.

A production-grade Model Context Protocol server for FRED® economic data. Covers all 31 endpoints exposed by fred-py-api.

Features

  • Full FRED API v1 coverage: series, categories, releases, sources, and tags
  • FastMCP 3.x with structured tool output and proper ToolError handling
  • Dual-mode credentials: environment variable (stdio) or per-client HTTP header (remote BYOK)
  • Transports: stdio, streamable-http, and sse
  • Docker image published to GHCR

Installation

pip install fred-mcp

Requires Python 3.10+.

Get a free FRED API key at fredaccount.stlouisfed.org/apikey.

Quick start

Local (stdio)

Best for Claude Desktop, mcphost, and other clients that spawn a local process.

export FRED_API_KEY=your_api_key
fred-mcp

Remote HTTP (bring your own key)

Deploy the server publicly and let each client send their own FRED API key via header. No shared server-side key is required.

Clients connect with streamable-http and send:

X-FRED-API-Key: your_fred_api_key

Example with the FastMCP client:

from fastmcp import Client
from fastmcp.client.transports import StreamableHttpTransport

transport = StreamableHttpTransport(
    "https://your-host.example.com/mcp",
    headers={"X-FRED-API-Key": "your_fred_api_key"},
)
async with Client(transport=transport) as client:
  await client.ping()

For public internet deployment, terminate TLS at a reverse proxy (nginx, Caddy, Cloudflare). Do not expose plain HTTP with API keys.

Optional server-side fallback key

Set FRED_API_KEY on the server for clients that cannot send custom headers. Header takes precedence when both are present.

Variable Default Description
FRED_API_KEY FRED API key (required for stdio; optional HTTP fallback)
FRED_API_KEY_HEADER X-FRED-API-Key HTTP header name for BYOK
MCP_SERVER_TRANSPORT stdio stdio, streamable-http, or sse
MCP_SERVER_HOST localhost Bind host for HTTP transports
MCP_SERVER_PORT 8000 Bind port for HTTP transports

Client integration

Claude Desktop

{
  "mcpServers": {
    "fred-mcp": {
      "command": "fred-mcp",
      "env": {
        "FRED_API_KEY": "<your api key>"
      }
    }
  }
}

mcphost

{
  "mcpServers": {
    "fred": {
      "command": "fred-mcp",
      "env": {
        "FRED_API_KEY": "<your api key>"
      }
    }
  }
}

Docker (streamable-http)

Run the server:

docker run -d -p 8000:8000 \
  --name fred-mcp-server \
  ghcr.io/zachspar/fred-mcp/fred-mcp-server:latest

Connect with your FRED key in the header (see remote HTTP example above).

For stdio via Docker:

{
  "command": "docker",
  "args": [
    "run", "-i", "--rm",
    "-e", "MCP_SERVER_TRANSPORT=stdio",
    "-e", "FRED_API_KEY=your_api_key",
    "ghcr.io/zachspar/fred-mcp/fred-mcp-server:latest"
  ]
}

Tools (31)

Series

Tool Description
get_series Series metadata
get_series_categories Categories for a series
get_series_observations Data values / observations
get_series_release Release that publishes a series
search_series Search series by text or ID
search_series_tags Tags for a series search
search_series_related_tags Related tags for a series search
get_series_tags Tags on a series
get_series_updates Recently updated series
get_series_vintage_dates Vintage / revision dates

Categories

Tool Description
get_category Category metadata
get_category_children Child categories
get_category_related Related categories
get_category_series Series in a category
get_category_tags Tags in a category
get_category_related_tags Related tags in a category

Releases

Tool Description
list_releases All releases
list_release_dates Release dates across releases
get_release Release metadata
get_release_dates Dates for one release
get_release_series Series in a release
get_release_sources Sources for a release
get_release_tags Tags for a release
get_release_related_tags Related tags for a release
get_release_tables Release tables

Sources

Tool Description
list_sources All data sources
get_source Source metadata
get_source_releases Releases from a source

Tags

Tool Description
list_tags Search / list tags
get_related_tags Related tags
get_tags_series Series matching tags

Migration from 0.x

Version 1.0.0 renames tools to snake_case and upgrades to FastMCP 3.x.

Old name (0.x) New name (1.0)
FREDSeries get_series
FREDSeriesCategories get_series_categories
FREDSeriesObservations get_series_observations
FREDSeriesRelease get_series_release
FREDSeriesSearch search_series
FREDSeriesSearchTags search_series_tags
FREDSeriesSearchRelatedTags search_series_related_tags
FREDSeriesTags get_series_tags
FREDSeriesUpdates get_series_updates
FREDSeriesVintageDates get_series_vintage_dates

21 additional tools were added for categories, releases, sources, and tags.

Error responses now use MCP ToolError (isError: true) instead of {"error": ...} payloads.

Development

python3.13 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
pytest
ruff check src tests

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fred_mcp-1.0.0.tar.gz (14.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fred_mcp-1.0.0-py3-none-any.whl (14.5 kB view details)

Uploaded Python 3

File details

Details for the file fred_mcp-1.0.0.tar.gz.

File metadata

  • Download URL: fred_mcp-1.0.0.tar.gz
  • Upload date:
  • Size: 14.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fred_mcp-1.0.0.tar.gz
Algorithm Hash digest
SHA256 62ad89977f0d4aca116b4f0fdbcc58aacd3f2376e39addd9e1cb7a7c7d7ec764
MD5 b5a535b3e0d67825366492c4ce0b1504
BLAKE2b-256 faf32b066ee4a82c0d6a2918bcafc87ee23051edc19eadb0abeec40894fe517f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fred_mcp-1.0.0.tar.gz:

Publisher: publish.yaml on zachspar/fred-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fred_mcp-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: fred_mcp-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fred_mcp-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9d5de5aae112564a32d243b0d5489c882971d9c515fff2ab9d552f1ac882dbf7
MD5 6c827191e04344aa0eb380bf78bc0d53
BLAKE2b-256 3e1f21143c09f0cb64b8334a2a9ce92d2ca5d49652600b420f068bb54b8bad98

See more details on using hashes here.

Provenance

The following attestation bundles were made for fred_mcp-1.0.0-py3-none-any.whl:

Publisher: publish.yaml on zachspar/fred-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page