background

NEW: Prediction Markets API

One REST API for all prediction markets data

Making FinFeedAPI Data AI-Ready with MCP Servers

Model Context Protocol (MCP) turns FinFeedAPI market data into structured, LLM-ready context, so your AI agents can query and act instantly.
background

What is MCP

Model Context Protocol (MCP) is a standard that allows AI assistants to connect to external data sources and tools. Instead of building custom integrations, you can use pre-built MCP servers that provide ready-to-use tools. With FinFeedAPI MCP servers you can build a host of smart, independent AI-agents, which reduce your need for manual queries and deliver instant, high-quality data for your project. Examples include:

background
SEC Research Bot
Your agent can start by hitting the filings endpoint with a ticker to see a company’s entire filing history. When it finds a relevant document, it can pull the required information from the document, e.g. "Item 1A" for Risk Factors or "Item 7" for Management's Discussion. No more downloading and parsing entire documents.
background
Stock Analysis Bot
The bot can operate on multiple time horizons to analyze stock data. It can research long-term trends by pulling historical OHLCV data and gain a strategic edge by analyzing market depth and liquidity via Level 3 order book data.
background
FX Macro Model Bot
Build agents that understand the global currency landscape. They can make instant calls to get a real-time exchange rate for any asset pair or pull years of historical timeseries data to back-test a currency trading strategy against past volatility.

Get started with FinFeedAPI and MCP

Explore our step-by-step tutorial for developers to start building with Model Context Protocol (MCP). Learn how to connect, query, and serve AI-ready market data using FinFeedAPI unified data model.

Why FinFeedAPI MCP Servers are the Choice for You

background
AI-Ready Architecture
MCP wraps FinFeedAPI REST endpoints with self-describing JSON schemas, instantly usable by AI agents and automation tools.
background
Unified Data Context
Every feed follows the same normalized schema, from trades to OHLCV, so AI models work seamlessly across exchanges and asset classes.
background
Works with any MCP-enabled environment
Compatible with OpenAI, Claude, or Cursor out of the box.
background
Plug-and-Play Setup
No SDKs or wrappers. Configure once, connect to FinFeedAPI MCP server, and start receiving real-time data.
background
Cross-Platform Compatibility
Integrates with AI assistants, data pipelines, or backend trading tools across MCP-ready platforms.
background
Zero Maintenance
New endpoints appear automatically in the MCP manifest, so your AI stack stays up to date without versioning or manual syncs.

Individual Server Endpoints

Stock API

Upstream API Base
MCP (HTTP Streaming)
SSE (Server-Sent Events)
https://api-historical.stock.finfeedapi.com/
https://mcp-historical.stock.finfeedapi.com/mcp
https://mcp-sse-historical.stock.finfeedapi.com/sse

Example MCP Configuration

This is a minimal JSON example showing how an application might be configured to talk to these servers. Replace <YOUR_API_KEY> with the key issued for your account.

Use FinFeedAPI MCP servers to:

  • image

    Query data directly from AI agents

  • image

    Define model context and access structured, schema-ready data

  • image

    Retrieve normalized trade data for training or analytics pipelines

  • image

    Integrate easily with LLMs, notebooks, or backtesting frameworks

  • image

    Enable caching and context reuse for faster data workflows

See documentation
1{
2  "FinFeedAPI-SEC": {
3    "url": "https://mcp.sec.finfeedapi.com/mcp",
4    "headers": {
5      "X-APIKey": "<YOUR_API_KEY>"
6    }
7  },
8  "FinFeedAPI-Stock": {
9    "url": "https://mcp-historical.stock.finfeedapi.com/mcp",
10    "headers": {
11      "X-APIKey": "<YOUR_API_KEY>"
12    }
13  },
14  "FinFeedAPI-FX-Realtime": {
15    "url": "https://mcp-realtime.fx.finfeedapi.com/mcp",
16    "headers": {
17      "X-APIKey": "<YOUR_API_KEY>"
18    }
19  },
20  "FinFeedAPI-FX-Historical": {
21    "url": "https://mcp-historical.fx.finfeedapi.com/mcp",
22    "headers": {
23      "X-APIKey": "<YOUR_API_KEY>"
24    }
25  },
26  "CoinAPI-Market-Data": {
27    "url": "https://mcp.md.finfeedapi.com/mcp",
28    "headers": {
29      "X-CoinAPI-Key": "<YOUR_API_KEY>"
30    }
31  }
32}