Open-source FRED MCP alternatives

The FRED server is open source, and its surface is small enough to read in a sitting: three tools, fred_browse, fred_search, and fred_get_series, mapped onto the Federal Reserve's 800,000+ economic series. If you want to confirm exactly how a query reaches FRED before an agent uses it, the code is short and there to read.

Every alternative below publishes its source too. That lets you audit which API calls go out, pin a version against a data quota or rate limit, and patch behaviour yourself rather than waiting on a maintainer.

The 8 best open-source alternatives

  1. SEC EDGARCommunity306

    Open source and source-of-truth, the SEC EDGAR server reads filings, XBRL financials, and insider trading from the regulator directly, with a repo that shows which EDGAR endpoints it hits.

    Set up SEC EDGAR
  2. Yahoo FinanceCommunity299

    Yahoo Finance through a maintained open repo: prices, fundamentals, statements, options, holders, and news, with code you can read to see what each tool requests.

    Set up Yahoo Finance
  3. Fronting 250+ tools through a toolset model, list_toolsets then enable_toolset, the open FMP server lets you read the repo to see how it gates that many endpoints behind a small visible surface.

    Set up Financial Modeling Prep
  4. Twelve DataOfficial67

    Twelve Data publishes its server for real-time and historical data, fundamentals, and 100+ indicators, including the u-tool router you can trace from request to endpoint in source.

    Set up Twelve Data
  5. AlpacaOfficial

    Open code matters most when an agent can trade. Alpaca's server is open source, so the order path, get_orders and place_stock_order, is auditable before any live account is connected.

    Set up Alpaca
  6. Alpha Vantage's open server exposes stock, forex, crypto, and economic data through explicit time-series tools, a readable design that overlaps FRED's economic coverage.

    Set up Alpha Vantage
  7. CoinGeckoOfficial

    For crypto, the official CoinGecko server is open source, covering live prices, market data, and on-chain DEX analytics through a compact search_docs and execute surface you can inspect quickly.

    Set up CoinGecko
  8. StripeOfficial1,583

    Not data but open and auditable for money movement: Stripe's official server creates customers, payment links, and invoices and reads balances, fitting when the agent handles billing.

    Set up Stripe

How to choose

All of these ship their code, so the choice comes down to scope. FRED and SEC EDGAR have the smallest, clearest surfaces to audit; FMP and Yahoo Finance are the broadest open data sources; Twelve Data and Alpha Vantage cover live markets. Read Alpaca's source most carefully since it places orders, and treat Stripe as the open option for billing rather than financial data.

FAQ

Is the FRED MCP server open source?
Yes. It is a maintained open-source server with three tools over the Federal Reserve's economic series, small enough to read end to end. Every alternative on this page also publishes its code.
Why choose an open-source economic-data server?
You can verify which API calls the server makes, pin a version against rate limits, and patch it yourself. For servers that trade or move money, like Alpaca and Stripe, reading the code before deployment is the safest way to confirm what an agent can actually do.
← Back to the FRED MCP server