Open-source Financial Modeling Prep MCP alternatives

The Financial Modeling Prep server publishes its source, so you can read how the toolset gating works before you wire it in: list_toolsets and describe_toolset on top, enable_toolset to switch a group on, list_tools to see what that exposes. For a server that fronts 250+ financial endpoints, being able to audit which ones an agent can reach matters.

Every alternative below ships its code too. That lets you confirm exactly which API calls go out, pin a version you trust against a paid data quota, and patch behaviour yourself instead of waiting on a vendor.

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 directly from the regulator, and the repo shows precisely which EDGAR endpoints it touches.

    Set up SEC EDGAR
  2. Yahoo FinanceCommunity299

    Yahoo Finance data through a maintained open repo: prices, fundamentals, statements, options, holders, and news, with the code there to confirm what each tool requests and returns.

    Set up Yahoo Finance
  3. FREDCommunity98

    Deliberately small and fully open, the FRED server exposes three tools over 800,000+ Federal Reserve series, a surface short enough to read end to end before granting access.

    Set up FRED
  4. Twelve DataOfficial67

    Twelve Data publishes its server for real-time and historical market data, fundamentals, and 100+ indicators, including the u-tool router, so you can see how natural-language requests map to endpoints.

    Set up Twelve Data
  5. AlpacaOfficial

    Auditing matters more when an agent can move money. Alpaca's trading server is open source, so you can read the order-placement path, get_orders and place_stock_order, before letting an agent near a live account.

    Set up Alpaca
  6. Alpha Vantage's open server exposes stock, forex, crypto, and economic data through explicit time-series tools, a readable, direct-endpoint design rather than FMP's enable-first toolsets.

    Set up Alpha Vantage
  7. CoinGeckoOfficial

    Open source for crypto, the official CoinGecko server covers live prices, market data, and on-chain DEX analytics through a compact search_docs plus execute surface you can inspect quickly.

    Set up CoinGecko
  8. StripeOfficial1,583

    Not market data, but open and auditable for the money-movement side: Stripe's official server creates customers, payment links, and invoices and reads balances, fitting when the agent handles revenue rather than analysis.

    Set up Stripe

How to choose

All of these let you read the repo before you trust it, which is the point of the cut. For auditing data provenance, SEC EDGAR and FRED have the smallest, clearest surfaces. Yahoo Finance and Twelve Data are the broadest open data sources. Read Alpaca's code most carefully, since it places orders, and treat Stripe as the open option for billing rather than financial data.

FAQ

Is the Financial Modeling Prep MCP server open source?
Yes. Its source is published, which lets you see how the toolset model gates the 250+ underlying tools and confirm which FMP endpoints an agent can call. Every alternative listed here also ships its code.
Why pick an open-source financial data server?
You can verify exactly which API calls go out, pin a version against a paid data quota, and patch the server yourself. With trading servers like Alpaca, reading the order path before deployment is the difference between a data leak and a placed trade.
← Back to the Financial Modeling Prep MCP server