Short Answer
MCP is the standard protocol that lets Claude Code, ChatGPT, and Cursor talk to brokers, data feeds, and chart platforms without custom API code. The eight MCP servers worth using for trading right now: Alpaca V2 (US stocks, 61 tools), Bybit (crypto futures, now mandatory AI Sub-Account), Gemini Agentic Trading (the first regulated US exchange with native MCP), Alpha Vantage (fundamentals), Polygon.io (options), mcp-trader (technical analysis), TradingView (chart reading), and VARRD (quant research). Claude Code’s June 2026 release added a remote MCP connector (no client code needed), tighter MCP policy enforcement, and shared session IDs for stdio servers — all of which make multi-server trading setups easier to wire up. Anthropic shipped 10 finance agent templates on May 5 that compose with these servers. The rest of the 500+ MCP servers in the wild are not built for trading.
What MCP Actually Is
Think of MCP as a USB port for AI. Before USB, every device needed its own connector. Before MCP, every AI tool needed custom code to talk to every external service.
MCP defines a standard way for AI agents (like Claude Code, ChatGPT, or Cursor) to discover and use external tools. An MCP server exposes a set of tools, and any compatible AI client can use them. You configure the server once, and the AI figures out which tools to call based on your requests.
For trading, this means instead of writing Python code to fetch market data from Bybit’s API, you can tell Claude Code “what’s the current BTC price on Bybit?” and it calls the right MCP tool automatically.
Trading MCP Servers Worth Using in 2026
The ecosystem is still young. Most MCP servers launched in late 2025 or early 2026, and quality varies a lot. Here is what is worth using right now, tested against real trading workflows.
Market Data Servers
| Server | Data Type | Free Tier | Real-Time | Best For |
|---|---|---|---|---|
| Alpha Vantage MCP | Stocks, ETFs, forex, crypto | 25 requests/day | Yes (premium) | US stock data, earnings, fundamentals |
| Financial Datasets | Stocks, fundamentals | Limited | No (EOD) | Backtesting, fundamental analysis |
| Polygon.io MCP | Stocks, options, crypto | Limited | Yes | Options data, tick-level data |
| CoinGecko MCP | Crypto | Yes | Delayed | Quick crypto price checks |
Alpha Vantage has the most mature MCP implementation for stock market data. Their official MCP server at mcp.alphavantage.co exposes real-time quotes, historical OHLCV, company fundamentals, earnings calendars, and economic indicators. The free tier gives you 25 API calls per day, which is enough for daily analysis but not for a bot that polls every minute.
Financial Datasets is better for batch research. You can pull historical price data, financial statements, and stock screener results. The data is end-of-day, so it is not useful for intraday trading, but it is solid for building backtests or analyzing fundamentals.
Exchange and Execution Servers
| Server | Exchange | Order Types | Paper Trading | Status |
|---|---|---|---|---|
| Alpaca MCP V2 | Alpaca | US stocks, ETFs, options, crypto | Yes | Official, V2 launched April 2026 |
| Bybit MCP | Bybit | Spot, futures, conditional | Yes (testnet) | Official, AI Sub-Account mandatory since May 20, 2026 |
| Gemini Agentic Trading | Gemini | Spot (US regulated) | Yes (paper mode) | Official, launched April 2026, first regulated US exchange with MCP |
| Binance MCP (community) | Binance | Spot, futures | Yes (testnet) | Community-maintained |
Alpaca’s official MCP V2 is the most complete execution server available right now. The V2 release (April 2026) expanded coverage from 43 to 61 tools, adding order replacements, full option chain exploration, market screening, and detailed account activity logs. It supports stocks, ETFs, options, and crypto through a single interface. You can connect it to Claude Code, Cursor, ChatGPT, or any MCP-compatible client and place trades with natural language like “buy 10 shares of NVDA at market” or “set a trailing stop on my TSLA position.” Paper trading is built in, so you can test without risking real money. We have a full tutorial on building an Alpaca MCP stock trading bot.
Bybit’s official MCP launched April 22, 2026, and is the strongest option for crypto futures. It covers market data, spot/futures trading, WebSocket streams, and account management. Because Bybit maintains it themselves, it stays in sync with their API changes. On May 20, 2026 Bybit made the AI Sub-Account mandatory for any new agent-scoped API key, which ringfences the bot’s balance from the rest of your account. We have a full Bybit MCP bot tutorial and a dedicated AI Sub-Account setup guide.
Gemini’s Agentic Trading is the newest entry and the first regulated US exchange to ship native MCP support (April 2026). The “Trading Skills” layer exposes named functions like find_the_spread and retrieve_candles instead of raw REST endpoints, which makes prompts cleaner. Agent keys cannot withdraw or transfer funds, only trade spot, and there is no margin yet. Full walkthrough: Gemini Agentic Trading with Claude Code.
The community-maintained Binance MCP server exists on GitHub but is not officially supported by Binance. It works, but check the repo’s last commit date before depending on it. API changes can break community servers, and fixes may take weeks.
Chart Analysis Servers
| Server | Platform | What It Reads | Requires |
|---|---|---|---|
| TradingView MCP | TradingView Desktop | Charts, indicators, drawings | Desktop app with CDP |
| mcp-trader | Standalone (Python) | RSI, MACD, Bollinger, MAs from price data | Python 3.10+, Yahoo Finance |
TradingView MCP connects Claude Code to your TradingView Desktop app through the Chrome DevTools Protocol. Claude can read your loaded charts, pull indicator values, take screenshots, and even switch symbols. This is the closest thing to having an AI “look at your screen” for chart analysis. Full setup guide: Connect Claude Code to TradingView with MCP.
mcp-trader is a community-built Python MCP server that calculates technical indicators directly from price data without needing a charting platform. It pulls stock data through a market data API (Yahoo Finance by default), runs indicators like RSI, MACD, Bollinger Bands, and moving averages, and returns structured results that Claude can reason about. It is useful when you want pure data analysis without a TradingView dependency. Install it from GitHub and configure it like any other MCP server in your ~/.claude/.mcp.json.
Quant Research Servers
| Server | Focus | Pricing | Key Feature |
|---|---|---|---|
| VARRD | Statistical edge discovery | Paid | Validated quant research with statistical rigor |
| FactSet MCP | Institutional data | Enterprise | Deep fundamental and alternative data |
VARRD is aimed at serious quant traders. It exposes tools for multi-turn statistical analysis, live signal scanning with exact entry/exit levels, and autonomous edge discovery. This is not a beginner tool. It is for traders who want to test hypotheses with statistical validation before committing capital.
FactSet is enterprise-grade. If you work at a fund or institution, their MCP server gives AI agents access to FactSet’s full data universe. Not relevant for most retail traders.
How to Set Up Any MCP Server with Claude Code
The process is the same regardless of which MCP server you are connecting:
1. Install the Server
Most MCP servers are Node.js packages:
# Example: Alpha Vantage
npm install -g @alphavantage/mcp-server
# Or clone from GitHub
git clone https://github.com/some-org/some-mcp-server.git ~/some-mcp
cd ~/some-mcp && npm install
2. Add to Claude Code Config
Edit ~/.claude/.mcp.json:
{
"mcpServers": {
"server-name": {
"command": "node",
"args": ["/path/to/server/index.js"],
"env": {
"API_KEY": "your-key-here"
}
}
}
}
3. Restart Claude Code
Start a new Claude Code session. The MCP tools will be available automatically. You can ask Claude to list available tools to verify the connection.
4. Test with a Simple Query
What tools are available from the [server-name] MCP server?
Then try a real query:
Get me the current price of AAPL using Alpha Vantage.
Running Multiple MCP Servers
You can run several MCP servers at once. Claude Code will pick the right tools based on your request. Here is a config that combines market data, chart analysis, and execution:
{
"mcpServers": {
"alphavantage": {
"command": "node",
"args": ["/path/to/alphavantage-mcp/index.js"],
"env": {
"ALPHA_VANTAGE_API_KEY": "your-key"
}
},
"tradingview": {
"command": "node",
"args": ["/path/to/tradingview-mcp/src/index.js"],
"env": {
"CDP_PORT": "9222"
}
},
"bybit": {
"command": "node",
"args": ["/path/to/bybit-mcp/src/index.js"],
"env": {
"BYBIT_API_KEY": "your-key",
"BYBIT_API_SECRET": "your-secret",
"BYBIT_TESTNET": "true"
}
}
}
}
With this setup, you can say something like: “Check my TradingView chart for BTCUSD, get the RSI and EMA values, and if RSI is below 30 then place a small limit buy on Bybit.” Claude uses the TradingView MCP for chart data and the Bybit MCP for order execution, all in one conversation.
What MCP Cannot Do (Yet)
Be realistic about the current limitations:
- No guaranteed latency. MCP adds a layer between your AI and the exchange. For high-frequency or latency-sensitive strategies, direct API connections are still better.
- Limited backtesting support. Most MCP servers are designed for live data. For historical backtesting, you are better off with Python libraries like
backtraderorvectorbtplus a data provider. - Security is your responsibility. MCP servers run on your machine with your API keys. A poorly written server could expose your keys or make unintended trades. Only use servers from trusted sources, and always start with testnet/paper trading.
- Not all AI clients support MCP equally. Claude Code has the best MCP support as of April 2026. Cursor and some ChatGPT integrations also work, but with fewer features. Check your AI tool’s MCP documentation.
- The ecosystem is fragmented. There is no central registry of trading MCP servers. You have to find them on GitHub, npm, or exchange documentation. Quality and maintenance vary.
Picking the Right Setup for Your Use Case
If you trade crypto and want automation: Bybit MCP is the most complete option right now. See the Bybit MCP bot tutorial.
If you want AI-assisted chart analysis: TradingView MCP gives Claude eyes on your charts. See the TradingView MCP setup guide.
If you trade US stocks: Alpaca MCP V2 handles both data and execution in one server, with built-in paper trading. For deeper fundamental data, add Alpha Vantage MCP alongside it. See the Alpaca MCP stock trading bot tutorial. For institutional-grade execution, the Interactive Brokers bot tutorial covers direct API access.
If you are a quant researcher: VARRD for statistical analysis, Financial Datasets for fundamental data, and your own Python scripts for backtesting.
If you are just getting started: Start with the AI trading 101 guide, then set up one MCP server (Alpha Vantage is the easiest) and experiment with simple data queries before trying to automate execution.
What Anthropic’s May 5 Finance Agents Add
On May 5, 2026, Anthropic shipped 10 finance agent templates as Claude Code plugins. These are not MCP servers themselves, but they compose well with the servers above. The Earnings Reviewer template, for example, can use Alpha Vantage MCP to pull a guidance number and compare it to consensus. The Pitch Builder uses the Financial Datasets MCP to populate a comps table.
A practical pairing for retail traders: install Alpha Vantage MCP for data, Alpaca MCP V2 for execution, and the Earnings Reviewer template for transcript analysis. The full breakdown of which finance agent templates are useful for retail (and which to skip) is in our Anthropic finance agents review.
For DeFi traders, the same pattern works on-chain: pair the Hyperliquid trading bot with mcp-trader for indicator calculations and skip the broker MCP entirely.
What Changed in June 2026 (Update)
The June Claude Code release shifted things on the client side, not the exchange side. Three changes matter for trading setups:
| Change | What It Does | Why It Matters for Trading |
|---|---|---|
| Remote MCP connector (beta) | Connect Claude to any hosted MCP server without writing client code | Point Claude at a broker’s hosted endpoint (like Alpha Vantage’s mcp.alphavantage.co) and skip the local Node process |
| Tighter MCP policy enforcement | Admins can allow or block specific MCP servers by policy | Lets you lock a trading machine to only the servers you trust, so a stray install cannot reach your keys |
| Shared session IDs for stdio servers | stdio MCP servers get the same CLAUDE_CODE_SESSION_ID as hooks and Bash on --resume | A long-running bot session keeps one ID across resumes, so trade logs stay tied to the right run |
The remote connector is the practical win. Before June, every server in the config tables above ran as a local process you installed and pointed Claude at. Now, for any exchange or data provider that hosts its own MCP endpoint, you add the URL and Claude handles the connection. Local installs still work and stay the right choice for servers that hold private keys, since you do not want those leaving your machine.
If you manage more than one trading machine, the policy enforcement is worth setting up early. You define an allowlist once, and a new clone of your setup cannot silently pull in an untrusted server that asks for API access.
What Changed in May 2026 (Update)
Two exchange-side updates landed after this guide’s first publish:
| Date | Exchange | What Shipped | Why It Matters |
|---|---|---|---|
| April 27, 2026 | Gemini | Agentic Trading via MCP | First regulated US exchange with native MCP; agent keys cannot withdraw or use margin |
| May 20, 2026 | Bybit | AI Sub-Account mandatory for new agent keys | Bot funds ringfenced from main balance; withdrawals locked off; per-bot leverage caps |
Both changes push in the same direction: agent connections get their own scoped account with fund isolation by default, instead of riding on a regular API key. If you set up a Bybit bot before May 20 with the old keys, it keeps working under a grandfather clause. Any key rotation after May 20 routes through the AI Sub-Account flow.
For a fresh bot in 2026, the right pattern is: start with the AI Sub-Account on Bybit (or paper mode on Gemini), test in isolation, and only widen permissions once you have 30+ trades you can audit line by line. The Bybit AI Sub-Account setup guide and the Gemini Agentic Trading walkthrough cover the exact steps.
Where This Is Heading
MCP for trading is past the proof-of-concept stage. With over 500 public servers and backing from Anthropic, OpenAI, and Google DeepMind, the protocol has real momentum. Alpaca’s V2 launch, Bybit’s official server, and Alpha Vantage’s hosted MCP endpoint all show that financial platforms are building for this standard, not waiting to see if it sticks.
The practical upside is already here: you can read charts through TradingView, pull fundamentals from Alpha Vantage, run technical analysis with mcp-trader, and execute trades on Alpaca, Bybit, or Gemini, all from one Claude Code session. With Gemini’s regulated US launch, Bybit’s mandatory AI Sub-Account, and the June remote connector that drops the local-install step for hosted servers, the second half of 2026 should bring more exchanges shipping their own MCP integrations rather than waiting on community wrappers.