MCP server for FRED (Federal Reserve Economic Data): full read API plus GeoFRED, 34 tools.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A strongly-typed Rust client for FRED β the Federal Reserve Economic Data service from the Federal Reserve Bank of St. Louis β plus a CLI (with TUI charts) and an MCP server built on top of it.
ferric(iron oxide β rust) +FRED. Iron-clad, typed access to economic data.
A Cargo workspace of three crates β each with its own README (the crates.io / docs.rs landing page) that carries the full usage detail:
| Crate | Binary | What it is | Details |
|---|---|---|---|
ferric-fred | β | Strongly-typed async FRED client | README Β· docs.rs |
ferric-fred-cli | fred | Command-line tool with ratatui TUI charts | README |
ferric-fred-mcp | fred-mcp | MCP server exposing FRED to MCP clients | README |
Published versions (these badges are the source of truth β the crates version independently, so they can drift out of lockstep):
Consumers depend on the library by workspace path, so a breaking change in the library cannot compile-pass its consumers without updating them β that compile-time coupling is the primary "stay in sync" guarantee (versions are managed on top; see the ADRs).
The library wraps all of FRED's read endpoints β series and observations
(including ALFRED point-in-time / vintage data via a real-time window),
search, categories, releases (including the nested release-table tree, with
optional inline observation values), sources,
and tags β plus the GeoFRED / Maps API (regional data and the geographic
shape files to map it, ADR-0025) β behind
ergonomic builders, with newtype identifiers, typed enums for
FRED's closed value sets, a non-panicking error taxonomy, and auto-pagination
(Paginate::send_all walks an endpoint to exhaustion, Paginate::stream yields
lazily; --all on the CLI). See ADR-0020 and
ADR-0021.
GeoFRED support spans the library, CLI (fred geofred), and MCP
(get_regional_data, get_series_data, get_series_group) layers. The one
exception is the geographic shapes/file endpoint, which is library/CLI-only β
a large projected-GeoJSON blob is poor ergonomics for an MCP tool caller
(ADR-0025).
Pick an entry point:
cargo add ferric-fred; typed async access from your own code.
See the crate README and
docs.rs.fred) β cargo install ferric-fred-cli; search, show metadata,
print or chart observations in the terminal, browse categories,
releases, sources, and tags, and pull GeoFRED regional data and map shapes
(fred geofred). See the crate README
or fred <command> --help.fred-mcp) β cargo install ferric-fred-mcp; 34 tools over
stdio covering the same read surface, for MCP-capable clients (ADR-0010).
Each tool declares input and output schemas plus behavioural annotations
(ADR-0023). See the
crate README.The MCP server is listed and scored on Glama:
A Nix flake provides a reproducible toolchain (nix develop, or direnv allow
once), but the project builds with a plain Rust toolchain too β Nix supplies the
environment, not the build (ADR-0008).
Contributor setup, the fmt/clippy/test/prose gate, the tracked git hooks, and the
workflow for adding an endpoint live in CONTRIBUTING.md.
CI (ci.yml) runs that same offline gate on every push and PR; a dormant
live.yml runs the live FRED tests once an Infisical machine identity is
configured (ADR-0016).
Performance tooling from the org Tech Radar pilot (ADR-0026, issue #42):
CI keeps the benches compiling on every PR (cargo bench --no-run), and a
separate bench.yml uploads results to Bencher (hosted
project ferric-fred) to track them over time and flag regressions on PRs.
Bencher has no divan adapter, so it ingests the criterion mirror
(rust_criterion) and hyperfine startup (shell_hyperfine); divan stays the
fast local harness. BENCHER_API_TOKEN comes from Infisical, so the upload is a
no-op until the machine identity is configured β see
ADR-0026.
The client reads a free FRED API key from the FRED_API_KEY environment
variable (get one at https://fredaccount.stlouisfed.org/apikeys). Locally,
secrets are injected via Infisical + direnv
(ADR-0009):
Store the key with infisical secrets set FRED_API_KEY="β¦" --env=dev --path=/shared.
No Infisical? Just set it directly in your git-ignored .envrc:
export FRED_API_KEY="β¦" β the library only reads the env var and has no
dependency on Infisical.
Design decisions are recorded as ADRs in docs/adr/. Start with
the index.
Dual-licensed under MIT OR Apache-2.0, at your option β the Rust ecosystem
default (ADR-0006). See LICENSE-MIT
and LICENSE-APACHE. Unless you state otherwise, any
contribution you submit is licensed under the same dual terms (see
CONTRIBUTING.md).
This covers our code; FRED data itself is subject to the St. Louis Fed's terms of use, and you supply your own API key β the project ships no data and no key.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/ferric-fred-mcp)<a href="https://allmcps.com/mcp/ferric-fred-mcp"><img src="https://allmcps.com/api/badge/ferric-fred-mcp?style=directory" alt="Ferric Fred MCP on AllMCPs" /></a>