11 Best MCP Servers for AI Trading (August 2026: Bitget + Kraken Added)

beginner 15 min · · By Alpha Guy · claude-code chatgpt cursor

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 eleven MCP servers worth using for trading right now: Alpaca V2 (US stocks, 61 tools), Robinhood Agentic Trading (retail brokerage execution), Bybit (crypto futures, mandatory AI Sub-Account), Gemini Agentic Trading (first regulated US exchange with native MCP), Bitget Agent Hub (58 tools across 9 modules including Copy Trading), Kraken CLI (spot, futures, xStocks, and forex with a built-in paper trading engine), Alpha Vantage (fundamentals), Polygon.io (options), mcp-trader (technical analysis), TradingView (chart reading), and VARRD (quant research). Through July, Revolut opened Revolut X to Claude over MCP, and Robinhood extended its agent platform to 24/7 crypto trading on top of the May equities launch. In August, Bitget’s Agent Hub and Kraken CLI MCP joined the exchange list — two more official integrations that give Claude Code direct access to a wider range of crypto and multi-asset markets without community-maintained wrappers. 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

ServerData TypeFree TierReal-TimeBest For
Alpha Vantage MCPStocks, ETFs, forex, crypto25 requests/dayYes (premium)US stock data, earnings, fundamentals
Financial DatasetsStocks, fundamentalsLimitedNo (EOD)Backtesting, fundamental analysis
Polygon.io MCPStocks, options, cryptoLimitedYesOptions data, tick-level data
CoinGecko MCPCryptoYesDelayedQuick 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

ServerExchangeOrder TypesPaper TradingStatus
Alpaca MCP V2AlpacaUS stocks, ETFs, options, cryptoYesOfficial, V2 launched April 2026
Robinhood Agentic TradingRobinhoodUS equities, options, crypto (24/7)No (sandboxed sub-account)Official, beta since May 27; crypto added July 2026
Bybit MCPBybitSpot, futures, conditionalYes (testnet)Official, AI Sub-Account mandatory since May 20, 2026
Gemini Agentic TradingGeminiSpot (US regulated)Yes (paper mode)Official, launched April 2026, first regulated US exchange with MCP
Revolut XRevolutCrypto spot, 300+ tokensNo (approval on every trade)Official, MCP connector opened July 10, 2026
Bitget MCPBitgetSpot, futures, margin, copy tradingYes (demo account)Official, 58 tools across 9 modules; Agent Hub on GitHub
Kraken CLI MCPKrakenSpot, futures, xStocks, forexYes (built-in paper engine)Official, open-source CLI in Rust; 151 commands as MCP tools
Binance MCP (community)BinanceSpot, futuresYes (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.

Robinhood Agentic Trading is the newest broker server and the one that put agentic trading in front of mainstream retail. On May 27, 2026 Robinhood opened its platform to any LLM that speaks MCP — Claude, ChatGPT, or your own agent — across its 27 million customers. You open a separate Agentic account inside the Robinhood app, fund a sandboxed wallet, and the agent can only spend what is inside it. From Claude Desktop or Claude Code you add the Robinhood MCP connector, authenticate through the browser, and Claude can then read your portfolio, check buying power, pull quotes, and place real orders. The beta launched equities-only, added options, and extended to 24/7 crypto trading in early July 2026 — futures and prediction markets are still on the roadmap. Crypto never closes, so an agent with standing approval can act overnight, which is a good reason to keep permissions tight there. Every action prompts for permission unless you grant it standing approval, and trades stream into the regular Robinhood app as notifications. Full walkthrough: Connect Claude to Robinhood Agentic Trading.

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.

Revolut X is the newest mainstream venue to open up, joining the agentic-trading wave on July 10, 2026. Revolut wired its standalone crypto exchange to Claude, Gemini, Cursor, and OpenClaw over an MCP connector built on the existing Revolut X trading API, covering 300+ tokens. The agent can analyze markets, monitor a portfolio, create alerts, backtest a rule, and stage market or limit orders, but Revolut requires your explicit approval on every trade, so nothing fills unattended. There is no paper sandbox, so fund it small. Full walkthrough: Revolut X AI agent trading with Claude.

Bitget Agent Hub is Bitget’s official MCP integration, available as an npm package (bitget-mcp-server) and as part of the open-source Agent Hub on GitHub. It gives Claude 58 tools across nine modules: Spot, Futures, Account, Margin, Copy Trading, Convert, Earn, P2P, and Broker. The Copy Trading module is the most interesting one for traders who want Claude to monitor and mirror pro accounts rather than run a custom signal. Public market data tools work without API credentials; account and order tools require a Bitget API key, secret, and passphrase. Bitget supports a demo account mode for testing orders before going live. Full walkthrough: Bitget MCP trading bot with Claude Code.

Kraken CLI MCP exposes Kraken’s full trading API as MCP tools through a single kraken mcp subprocess. The CLI is open-source, written in Rust, has 151 commands, and covers spot, futures, xStocks (tokenized equities), and forex. The built-in paper trading engine fills orders against live Kraken prices locally with no real funds at risk, making it the most complete paper-trading option among the exchange servers listed here. Unlike most servers, Kraken CLI runs as a local binary rather than a Node.js process, so there is nothing to install with npm. Full walkthrough: Kraken MCP trading bot 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

ServerPlatformWhat It ReadsRequires
TradingView MCPTradingView DesktopCharts, indicators, drawingsDesktop app with CDP
mcp-traderStandalone (Python)RSI, MACD, Bollinger, MAs from price dataPython 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

ServerFocusPricingKey Feature
VARRDStatistical edge discoveryPaidValidated quant research with statistical rigor
FactSet MCPInstitutional dataEnterpriseDeep 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 backtrader or vectorbt plus 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:

ChangeWhat It DoesWhy It Matters for Trading
Remote MCP connector (beta)Connect Claude to any hosted MCP server without writing client codePoint Claude at a broker’s hosted endpoint (like Alpha Vantage’s mcp.alphavantage.co) and skip the local Node process
Tighter MCP policy enforcementAdmins can allow or block specific MCP servers by policyLets you lock a trading machine to only the servers you trust, so a stray install cannot reach your keys
Shared session IDs for stdio serversstdio MCP servers get the same CLAUDE_CODE_SESSION_ID as hooks and Bash on --resumeA 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:

DateExchangeWhat ShippedWhy It Matters
April 27, 2026GeminiAgentic Trading via MCPFirst regulated US exchange with native MCP; agent keys cannot withdraw or use margin
May 20, 2026BybitAI Sub-Account mandatory for new agent keysBot 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.

What Changed in August 2026 (Update)

Two more official exchange servers landed in August, expanding the list beyond what retail traders could access a month ago:

DateExchangeWhat ShippedWhy It Matters
August 2026BitgetAgent Hub MCP (58 tools, 9 modules)Adds Copy Trading module — Claude can monitor and mirror pro accounts directly
August 3, 2026KrakenCLI MCP with built-in paper engineSpot, futures, xStocks, and forex in a single open-source binary with no npm install

Both are official, maintained by the exchanges themselves, which matters for longevity. Community wrappers like the Binance server tend to break on API updates and stay broken for weeks; an exchange-maintained server has an incentive to fix it fast.

The more significant pattern: every major exchange that launched an MCP integration in 2026 has shipped it with some form of isolation or sandboxing — Bybit’s mandatory AI Sub-Account, Gemini’s agent keys that cannot withdraw, Kraken’s paper mode, Bitget’s demo account. The industry has settled on “ringfence the bot’s money” as the baseline, which makes getting started less risky than it was when this guide was first published.

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.

Disclaimer: This article is for educational purposes only and is not financial advice. Trading cryptocurrencies involves substantial risk of loss. Past performance does not guarantee future results. Always do your own research before making any trading decisions. Read full disclaimer →
Alpha Guy
Alpha Guy

Founder of VibeTradingLab. Ex-Goldman Sachs engineer, 2025 Binance Top 1% Trader. Writes about using AI tools to build trading systems that actually work. Currently nomading between Bali, Dubai, and the Mediterranean.

Got stuck? Have questions?

Join our Telegram group to ask questions, share your bots, and connect with other AI traders.

Join Telegram