TradeMCP
An MCP server that exposes trading analytics — technical indicators, portfolio state, risk metrics, and backtest results — as tools an LLM agent can call.
README
TradeMCP
An MCP (Model Context Protocol) server that exposes trading analytics — technical indicators, portfolio state, risk metrics, and backtest results — as tools an LLM agent can call. Built to demonstrate protocol-level MCP understanding, not just API wrapping.
The defining design choice: read operations are open; write operations (placing trades) sit behind a human-in-the-loop approval gate. Phase 1 (this repo) ships the read-only surface and the architecture that makes the read/write split clean.
Why this exists
Most MCP portfolio projects wrap a public API in a decorator. This one is built around the questions that actually come up when you put an agent in front of something that can move money:
- What happens when the model sends a hallucinated symbol or malformed arguments?
- How do you stop an agent from doing something irreversible?
- How do you keep tool outputs small enough to not blow the context window?
- How do you swap simulated data for a live brokerage without rewriting the tools?
See DESIGN.md for the full decision record.
Architecture
┌──────────────┐ MCP (stdio / streamable HTTP) ┌────────────────────┐
│ LLM client │ ───────────────────────────────► │ TradeMCP server │
│ (Claude etc.)│ ◄─────────────────────────────── │ (server.py) │
└──────────────┘ tool calls / results └─────────┬──────────┘
│ depends on interface
▼
┌──────────────────────────────┐
│ MarketDataProvider (ABC) │
├──────────────────────────────┤
│ SimulatedProvider (default) │
│ KiteProvider (Phase 2) │ ← live AutoTrade Bot
└──────────────────────────────┘
| Module | Responsibility |
|---|---|
server.py |
Protocol/tool layer: validate input → call provider → format output |
data_provider.py |
Data layer behind an abstract interface (the swap point for live data) |
models.py |
Pydantic input schemas — the first line of defense against bad LLM input |
formatting.py |
Shared markdown/JSON formatting (context-efficient output) |
errors.py |
Centralized, actionable error messages |
The tool layer depends on the MarketDataProvider interface, never on a concrete data source. That dependency-inversion boundary is what lets the same server run on simulated data in CI and live data in production.
Tools (Phase 1 — all read-only)
| Tool | Purpose |
|---|---|
trade_get_indicators |
Latest RSI / EMA / MACD / ATR + signal for a symbol |
trade_get_portfolio |
Holdings, cash, equity, unrealized P&L |
trade_get_portfolio_risk |
Concentration, beta, VaR, Sharpe, drawdown, circuit breakers |
trade_list_backtests |
Paginated list of backtest runs (discover run IDs) |
trade_get_backtest |
Full metrics for one run |
Every tool is annotated readOnlyHint: true and supports both markdown (default, human-readable) and json (structured) output.
Quickstart
# 1. Install
pip install -e ".[dev]"
# 2. Run the test suite
pytest
# 3. Run the server (stdio transport, the default)
python -m trade_mcp.server
# Or over HTTP for remote clients:
TRADE_MCP_TRANSPORT=streamable_http TRADE_MCP_PORT=8000 python -m trade_mcp.server
Inspect with the MCP Inspector
npx @modelcontextprotocol/inspector python -m trade_mcp.server
Wire into Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"trade-mcp": {
"command": "python",
"args": ["-m", "trade_mcp.server"],
"cwd": "/absolute/path/to/trade-mcp/src"
}
}
}
Then ask: "What's the RSI on Reliance, and how concentrated is my portfolio?"
Data is simulated (by design)
The default SimulatedMarketDataProvider returns deterministic data derived from a hash of each input, so demos and tests are fully reproducible with zero credentials. Wiring in the live AutoTrade Bot backend means implementing the five MarketDataProvider methods in a new class and changing one line in server.py.
Roadmap
- [x] Phase 1 — Read-only analytics surface, provider abstraction, tests
- [ ] Phase 2 —
trade_place_orderbehind a human approval gate (Telegram confirmation + audit log) - [ ] Phase 3 — Rate limiting, response caching, retries
- [ ] Phase 4 — Multi-server client demonstrating tool discovery/orchestration
- [ ] Phase 5 — Live
KiteMarketDataProviderwrapping the real trading bot
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。