trade-analytics-mcp
The server provides AI agents with market data context and trade analysis tools, operating locally with your Databento key and optionally using a hosted API for chart rendering and advanced metrics.
Free (local, no API key needed beyond Databento)
Resolve symbols: Convert informal names like "MNQ" or "micro nasdaq" into exact Databento contract notation, including point value, tick size, and front-month.
Fetch price context: Get OHLCV candlestick data and trade markers (entries, exits, stops) as JSON around your fills, with auto-sizing, optional reference levels (PDH, PDL, VWAP, etc.), and technical indicators (EMA, SMA, ATR).
Paid (free tier available, no credit card)
Render annotated charts: Generate candlestick chart images (PNG/SVG) with entries, exits, stop/target zones, and reference levels annotated; images are saved locally for journaling.
Analyze trade performance: Compute per-trade metrics (MAE, MFE, R-multiple, went-green-first, capture efficiency) plus USD P&L, time-in-trade, win rate, and session-level roll-ups, helping AI distinguish bad luck from bad location.
Privacy-centric: Market data sourced from your Databento key stays on your machine; only the minimal numeric candle data slice is sent to the API for rendering/analysis, and the API is stateless and retains nothing.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@trade-analytics-mcpAnalyze my ES trades from yesterday."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
trade-analytics-mcp
Give your AI eyes and a ruler for your trades. An open-source MCP server that lets your LLM/agent pull the real price action around every fill in an order-history export, see each trade on a candlestick chart, and measure it — heat taken, R-multiple, whether it went green before red, how much of the move it captured — so it can tell you whether a loss was bad luck or bad location.
You bring your own market-data key; the data stays on your machine.
Why — what it actually lets your AI do
An order-history export (Tradovate, your broker's CSV, …) is just timestamps, prices, sizes, sides. From that alone an AI can spot behaviour — overtrading, revenge entries, size creep, bad time-of-day — but it is blind to trade-location quality: was the entry into structure or a chase? how much adverse excursion did you sit through? did you cut a winner early? was the stop sane for the volatility?
This MCP closes that gap — in two tiers.
🆓 Free, on your machine
resolve_symbol + get_price_context run 100% locally under your own Databento key — no
account, no fee, no data leaving the machine. Your agent can:
turn "MNQ" / "micro nasdaq" into the exact contract, point value, and front-month; and
pull the real OHLCV around each fill (auto-windowed) with your entries/exits/stops as JSON,
so it reasons over the actual price path — where the entry sat, the shape of the move, proximity to the day's high/low — instead of guessing. That alone turns "I think I chased" into a grounded read.
💳 With a trade-analytics API key (free tier — no card)
render and analyze send only the numeric slice of that same local data to the hosted API and
add the two things that are tedious or impossible to do well from raw JSON. The API has a free
tier (no credit card), so you can try the full experience at no cost — paid tiers only raise the
monthly quota:
render— an annotated candlestick chart image (entries ▲ / exits ▼, SL/TP zones, reference levels), returned and saved to a file so your AI can drop it into a journal.analyze— the precise per-trade metrics that separate good-trade-bad-outcome from bad-location: MAE / MFE (heat vs best excursion), R-multiple, went-green-first, capture efficiency, plus USD P&L, time-in-trade, win rate, and session roll-ups.
So — with the paid tools — instead of "you lost on trade #3," your AI can say:
"Trade #3 (short at 20,110) went +0.8R in your favour within three minutes, then reversed through your entry to −18 pts before you exited at −15 — MFE 12, MAE 18, capture −1.2. Location was fine (into the prior-day high); management wasn't," — and hand you the annotated chart.
A typical review
"Review my MNQ trades from last week." → your agent reconstructs the round-trips, calls
resolve_symbol(MNQ → the right contract),analyze(per-trade MAE/MFE/R/capture + a session summary), andrenderon the notable trades (charts saved to your vault), then writes the review with the numbers and the pictures.
Related MCP server: ai-trader
Tools
Tool | What it does | Cost |
| "MNQ" / "micro nasdaq" → precise contract, point value, front-month | Free, local |
| OHLCV + your entries/exits/SL as JSON for a window auto-sized around the trade | Free, local |
| An annotated candlestick chart image, returned and saved to a file (PNG or SVG) | Paid |
| Per-trade MAE/MFE, R-multiple, went-green-first, capture efficiency + summary | Paid |
resolve_symbol and get_price_context run 100% on your machine under your own data key — no
account, no fee. render and analyze forward only the numeric slice of your own data to the
hosted trade-analytics API and return the result; nothing is retained.
Setup
1. Get a Databento key (your market data)
Databento is a modern market-data provider — institutional-grade historical and live data through a simple API. This example MCP implementation uses it to fetch the candles around your trades, under your own key, locally.
No subscription. It's pay-as-you-go, and new accounts get a free usage credit that comfortably covers normal trade review — historical 1-minute OHLCV is cheap and is often effectively free within that credit.
Sign up at databento.com → open the portal → create an API key → that's your
DATABENTO_API_KEY.
Your key and your data stay on your machine; only the numeric slices you render/analyze leave it.
2. Get a trade-analytics API key — free to start
render and analyze call the hosted API, which has a free tier (no credit card) — so you can
use the full experience right away; paid tiers only raise the monthly quota.
Open the dashboard and sign up (free).
Click Create key and copy it — it's shown once (looks like
tc_live_…).Add it to your MCP config as
TRADE_ANALYTICS_API_KEY(step 3 below).
You don't need this to get started. The MCP connects and the free local tools work with just your Databento key — the API key only unlocks
render+analyze, so add it whenever you want charts or analysis. Call those without a key and you'll get a friendly "grab a key" message, not a crash.
3. Add the MCP to your client
Claude Code (or any terminal harness):
claude mcp add trade-analytics \
-e DATABENTO_API_KEY=db-your-key \
-e TRADE_ANALYTICS_API_KEY=tc_live_your-key \
-- npx -y trade-analytics-mcpDrop the TRADE_ANALYTICS_API_KEY line to run just the free local tools.
Claude Desktop / other MCP clients — add to the config:
{
"mcpServers": {
"trade-analytics": {
"command": "npx",
"args": ["-y", "trade-analytics-mcp"],
"env": {
"DATABENTO_API_KEY": "db-your-key",
"TRADE_ANALYTICS_API_KEY": "tc_live_your-key"
}
}
}
}Configuration
Resolved with precedence CLI flags > env > defaults:
Setting | Env | Flag | Notes |
Databento key |
|
| Required. Your own; data stays local. |
API key |
|
| Only for |
API URL |
|
| Defaults to the hosted API. |
Output dir |
|
| Where |
Built on the trade-analytics API
This whole server is a thin client — it fetches data locally and calls the trade-analytics API for the rendering and analysis. That API is a general, data-agnostic service for turning OHLC data into chart images and trade metrics: send it candles (from any source), get back a chart or a trade analysis. This MCP is just one example of what you can build on it — a dashboard, a trading bot, a Discord/Slack integration, a backtest reporter, or your own journaling tool would all sit on the same endpoints.
Privacy
Your Databento key and your market data live on your machine.
The free tools make no network calls to us at all.
render/analyzesend only the numeric candle slice needed for that one call; the API is stateless and retains nothing.
Develop
npm install
npm run typecheck && npm test && npm run build
npm run dev # run the stdio server locallyMIT licensed. Issues and PRs welcome.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- -licenseBquality-maintenanceEnables LLMs to retrieve, analyze, and visualize stock prices and financial report data for quantitative trading research and investment analysis. Provides real-time and historical stock data, financial statement analysis, key metric calculations, and trading signal visualization.Last updated13
- Alicense-qualityDmaintenanceEnables AI assistants like Claude to run backtests, fetch market data, list strategies, and analyze trading algorithms via natural language.Last updated984GPL 3.0
- Flicense-qualityBmaintenanceEnables AI co-pilots to interact with TradingView charts, manage alerts via REST API, automate morning briefs with custom trading rules, and perform real-time market analysis.Last updated

panther-mcpofficial
Alicense-qualityDmaintenanceEnables AI assistants to backtest trading strategies described in plain English, providing access to market data, technical indicators, and comprehensive performance reports.Last updated1MIT
Related MCP Connectors
Build, backtest, and deploy quantitative trading strategies from your AI agent.
Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.
Analyze any Nifty 500 stock with AI — price action, demand zones, technicals & screener.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oliverwehn/trade-analytics-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server