AlgoChains MCP Server
OfficialAllows sending push notifications via ntfy.sh, used for alerting on trading events or bot status changes.
Provides integration with QuantConnect for strategy backtesting and algorithmic trading workflows, enabling tools like run_backtest and walk_forward_test to leverage QuantConnect's platform.
Used as the backend for storing and resolving subscriber keys and account data, enabling the MCP server to authenticate users and manage subscriptions.
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., "@AlgoChains MCP ServerWhat's my paper P&L today?"
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.
AlgoChains MCP Server
The only MCP server with live futures bots, real fill data, real-time ML inference, and 533 tools across 21 domains — all backed by real APIs, zero synthetic data.
Connect your AI assistant (Claude, Cursor, ChatGPT) to your trading infrastructure in 3 commands. Ask Claude "What's my paper P&L today?" — it reads your AlgoChains virtual paper account and tells you. No broker required.
You ask Claude: Claude calls: Server calls:
"What's my paper P&L?" → get_my_portfolio() → AlgoChains paper account → real signals
"What signals did MNQ fire?" → get_signal_stream() → copy-trade signal feed → live bot output
"Run a backtest on MNQ" → run_backtest() → Databento tick archive
"Is the market trending?" → detect_market_regime() → Polygon + FRED → analysis
"What's my live NQ position?" → get_positions() → Tradovate API → real data (live users)Quick Install
# 1. Install
pip install algochains-mcp-server
# 2. Connect to your IDE (no credentials needed to start)
python scripts/quickstart.py --generate-config cursor
# 3. Verify
python scripts/quickstart.py --mode demoThat's it. Your AI now has 181 tools (smart mode) available immediately.
Recommended next step — no broker needed: Sign up at algochains.ai for a free hosted virtual paper account, set ALGOCHAINS_SUBSCRIBER_KEY=sub_live_…, and start copy-trading MNQ signals instantly. See Option B below.
For live broker connectivity (Tradovate, Alpaca, etc.), see Option C.
Related MCP server: GearTrade MCP Server
Subscriber Onramp — Try It Free (No Broker Required)
The fastest way to get value from this server is as a subscriber: sign up at algochains.ai, get a free hosted virtual paper account, and start copy-trading the live MNQ bot's signals in seconds. No Tradovate credentials. No Alpaca account. No real money.
How it works
Sign up at algochains.ai — free paper account provisioned automatically
Dashboard shows your
sub_live_…subscriber key — copy itSet
ALGOCHAINS_SUBSCRIBER_KEY=sub_live_…in your shell or.envClaude now has 9 subscriber-scoped tools available:
Tool | What it does |
| Paper balance + active bot assignments + open signals + 7-day P&L in one call |
| Unread copy-trade signals for the bots you follow (MNQ by default) |
| Today's P&L and 7-day P&L from your paper fills |
| Paginated fill history — symbol, side, qty, fill price, P&L per trade |
| Which bots you're subscribed to and their risk caps |
| Browse all approved bots available to subscribe to |
| Place a self-directed paper order (filled at real quotes) |
| Cancel a pending paper order |
| Open and recently filled self-directed paper orders |
All 16 subscriber tools require only the sub_live_… key (env ALGOCHAINS_SUBSCRIBER_KEY) — no OWNER_API_TOKEN, no broker credentials.
To place trades in your own broker (Tradovate/Alpaca) rather than the hosted virtual paper account, connect it at https://algochains.ai/account/brokers/ (server-side Broker Hub — no local daemon to run).
Subscriber key format
Keys always start with sub_live_ (production) or sub_test_ (sandbox). Set the key
as ALGOCHAINS_SUBSCRIBER_KEY (canonical) in your .env — the server resolves your
subscriber_id server-side via Supabase. Your key never touches this repo.
ALGOCHAINS_SUB_KEY is accepted as a back-compat alias by both the Python server and
the TS CLI (fixed in #242 / v22.7.1), but prefer ALGOCHAINS_SUBSCRIBER_KEY. Note:
ALGOCHAINS_BRIDGE_KEY is the owner / developer key — it is not a subscriber key.
On the HTTP bridge the subscriber key is sent as the X-Api-Key header; the base URL is
https://mcp.algochains.ai (api.algochains.ai is a different service — AlgoChains' Data
API — and does not answer /api/mcp). There are 16
subscriber tools in total (get_signal_stream, get_my_pnl, get_my_fills,
get_my_assignments, get_my_portfolio, get_marketplace_listings, place_paper_order,
cancel_paper_order, get_my_paper_positions, report_fill, heartbeat, ack_signal,
join_bot, get_subscriber_status, accept_subscriber_terms, get_my_usage).
Subscriber quick-start prompts
Portfolio snapshot:
"Run get_my_portfolio. What's my paper balance and how did the MNQ bot do today?"
Signal stream:
"Call get_signal_stream. What signals has the MNQ bot fired in the last hour?"
Fill history:
"Run get_my_fills with limit=20. List the last 20 fills with P&L per trade."
Marketplace browse:
"Run get_marketplace_listings. Which bots are available to subscribe to?"
Paper trade:
"I want to paper-trade 1 MES long at market. Use place_paper_order."Bot owners: See MARKETPLACE_CREATOR_GUIDE.md and
check_propagation_health/test_signal_propagationfor the copy-trade pipeline health tools (requiresOWNER_API_TOKEN).
Smart Mode vs Full Mode
AlgoChains exposes tools in two tiers, controlled by ALGOCHAINS_TOOL_MODE:
Mode | Tools Exposed | Token Cost | When to Use |
Smart (default) | 181 curated | ~4K tokens | Cursor, Windsurf (80-tool limit), everyday use |
Full ( | 533 tools | ~40K tokens | Claude Code, full agentic sessions |
Smart mode includes: all live bot tools, market data, signals, research/backtest, Onyx RAG, prop fund pipeline, position sizing, broker management, and order execution. Everything you need 95% of the time.
Full mode unlocks the remaining 352 tools: advanced DeFi, Kalshi order placement, multi-tenant SaaS, QuantConnect integration, alt-data pipelines, and more.
discover_tools — Find Any Tool Without Full Mode
Even in smart mode, you can find and use any of the 533 tools:
# Ask the server to find the right tool for your task
discover_tools("walk-forward validation with leakage check")
# → Returns: walk_forward_test, run_mcpt_validation, analyze_overfitting
# Then call it
execute_dynamic_tool("walk_forward_test", {"symbol": "MNQ", "lookback_days": 252})This provides 99.6% token reduction vs exposing all 533 tools (arXiv:2603.20313).
Tool Domains
All 533 tools organized across 21 domains:
# | Domain | Smart | Full | Key Tools |
1 | Market Data | 14 | 22 |
|
2 | Signals & Analysis | 12 | 18 |
|
3 | Research & Backtesting | 10 | 16 |
|
4 | Position Sizing | 6 | 8 |
|
5 | Options Analytics | 4 | 6 |
|
6 | Prop Fund Pipeline | 8 | 10 |
|
7 | Broker Management | 6 | 15 |
|
8 | Subscriber / Copy-Trade | 3 stdio | 16 bridge |
|
9 | Account Protection | 6 | 8 |
|
10 | Order Execution | 8 | 12 |
|
11 | Emergency / Destructive | 3 | 5 |
|
12 | Intelligence (Onyx + Macro) | 10 | 14 |
|
13 | Prediction Markets | 8 | 12 |
|
14 | Skills Bridge | 5 | 5 |
|
15 | Agent Memory | 6 | 8 |
|
16 | Live Bot Intelligence | 12 | 18 |
|
17 | Desktop Tower / Dispatch | 4 | 8 |
|
18 | Performance Reporting | 4 | 6 |
|
19 | Billing & Subscription | 12 | 12 |
|
20 | Platform / SaaS | 8 | 20 |
|
21 | AlphaLoop / Evolution | 12 | 22 |
|
Subscriber tools are split by transport: local stdio exposes the consent/status funnel, while the HTTP bridge exposes the full subscriber data and paper-order surface.
Live Bot Showcase
AlgoChains runs 4 live futures bots on Tradovate. Their state, fills, ML pipeline health, and brackets stream through this MCP server in real time.
Bot | Symbol | Strategy | Live Since | Key MCP Tool |
| MNQ | 7-AI ensemble, 5-min bars | Dec 2024 |
|
| CL | FinBERT sentiment + momentum | Jan 2025 |
|
| MES | EMA pullback + regime detection | Feb 2025 |
|
| NQ | Trend following + foundation model | Feb 2025 |
|
get_bot_health — Full e2e Signal→Order→Fill Trace
# Returns: process state, position, bracket status, AI pipeline health,
# ml_env_flags (MASSIVE_NEWS_FEATURES, MASSIVE_PCR_FEATURES, MASSIVE_HALT_GUARD),
# cc_health (Command Center last-seen, WS status, Databento live feed age),
# signal_health (params, risk_bootstrap, bot_version, trading_mode),
# e2e_sentinel (signal→order→bracket→fill lifecycle state)
health = get_bot_health(bot="MNQ")# All 4 bots in one call
status = get_all_bot_ops_status()
# Returns: process + position + bracket + pipeline snapshot for MNQ/CL/MES/NQNo credentials needed if you have ALGOCHAINS_BRIDGE_API_KEY. Read-only.
Billing & Subscription Funnel (Fully Programmatic)
Every billing action is available as an MCP tool — no browser required after the initial Stripe checkout. An agent or a user can go from zero to copy-trading MNQ signals in one conversation thread.
New-user discovery (no auth, always available)
get_started(goal="subscriber") # guided next-step map for new users
get_pricing() # transparent tiers, referral %, creator share
get_system_status() # platform health, bot roster, live tool countSubscribe programmatically
# 1. Get a Stripe-hosted checkout URL (one call — no browser needed after this)
get_checkout_url(email="you@example.com", tier="paper")
# → returns a checkout_url the user visits once to enter payment details
# → subscriber API key is emailed automatically after payment
# 2. Set ALGOCHAINS_SUBSCRIBER_KEY, then accept the CFTC risk disclosure
# (required before signals; subscriber_id is resolved from the key)
accept_subscriber_terms(
acknowledgment="I have read and understand the risk disclosure above. I accept full responsibility for my trading decisions."
)
# 3. Subscribe to MNQ copy-trade signals (published for you to review and act on)
join_bot(bot="MNQ", size_multiplier=1.0)
# 4. Check stdio status; use the HTTP bridge for portfolio/signal tools
get_subscriber_status()Usage metering
get_my_usage()
# → calls_this_month, included_quota, overage_calls, projected_overage_usdReferral program
create_referral_code() # → code: "AC-X7K2NP"
get_my_referrals() # attributed sign-ups + commission
get_referral_earnings() # total earned, pending payoutCreator revenue (strategy publishers)
create_creator_onboarding_link(creator_id="cr_...", creator_email="you@example.com")
# → Stripe Connect Express onboarding URL (KYC, bank account)
get_my_creator_earnings(creator_id="cr_...")
# → accrued_usd, paid_usd, pending_payout_usd, next_payout_date
# Owner-gated payout run (requires OWNER_API_TOKEN)
run_creator_payouts(dry_run=True) # preview
run_creator_payouts(dry_run=False, owner_token="tok_...") # execute transfersRealized P&L (live-tier subscribers)
get_my_realized_pnl()
# → realized_pnl_usd, trade_count, period, disclaimer (CFTC 4.41(b))Tool | Auth | Tier gate |
| None | Public |
| None | Public |
| None | Public |
| None | Public (Stripe handles billing) |
| Subscriber API key | Paper / Live |
| Subscriber API key | Paper / Live |
| Subscriber API key | Paper / Live |
| Subscriber API key | Paper / Live |
| Subscriber API key | Paper / Live |
| Subscriber API key | Live |
|
| Owner |
|
| Owner |
|
| Owner |
Signals are published for the subscriber to review and act on — no automated execution. Past performance is not indicative of future results. See
accept_subscriber_termsfor the full CFTC risk disclosure.
Desktop Tower Dispatch
Heavy ML workloads (hyperparameter sweeps, walk-forward validation, feature importance) run on the desktop tower (configured via ALGOCHAINS_TOWER_HOST) via dispatch_tower_job. The Mac stays clean.
# Dispatch a backtest or ML job to the GPU tower
dispatch_tower_job(
job_type="backtest",
params={"strategy": "mnq_scalper", "lookback_days": 252, "wfv_windows": 12}
)
# Check job status
get_tower_job_status(job_id="job_abc123")From the CLI (ac command):
# Not yet in ac — see CLI_GAP_ANALYSIS.md for ac tower subcommand roadmap
python3 -c "
from algochains_mcp.algoclaw.desktop_tower import dispatch_tower_job
dispatch_tower_job('backtest', {'strategy': 'mnq_scalper', 'lookback_days': 90})
"What runs where:
Component | MacBook (execution) | Desktop Tower (ML/GPU) |
Live bots (MNQ/CL/MES/NQ) | ✅ launchd | — |
Token Guardian, Kalshi daemon | ✅ launchd | — |
Command Center ( | ✅ cloudflared tunnel | — |
Onyx RAG ( | — | ✅ |
GPU/ML: FinBERT, Kronos, vLLM | — | ✅ |
Heavy backtests via | sends job → | ✅ executes |
Security
Authentication Tiers
Scope | How to Authenticate | What's Allowed |
Public / demo | No credentials | Market data, Onyx search, regime detection |
Team |
| Bot metrics, positions (read-only) |
Owner |
| Order execution, bot restart, emergency stop |
Localhost-Only Services
The following services bind to 127.0.0.1 only and are never exposed publicly:
MCP server HTTP bridge (port 8765 / stdio)
Command Center dev server (port 3333) — external access via Cloudflare Access tunnel only
Onyx RAG stack (tower port 8085) — accessible via Tailscale VPN only
Hard-Coded Safety Limits
These cannot be overridden by any AI agent:
Daily loss limit: $500 (hard stop, all orders blocked until midnight)
Max drawdown: 15% (circuit breaker trips at 15% peak-to-trough)
Human confirmation: required for all orders above $10K notional
AI loop detection: 5 identical calls in 60s → 30-minute order block
VIX gate: all trades blocked when VIX > 35Full safety documentation: SAFETY_MODEL.md
OWNER_API_TOKEN — Mutation Gating
Tools in danger tier 2 (order execution) and tier 3 (destructive) require OWNER_API_TOKEN in the request header. The HTTP bridge verifies this before dispatching. AI agents that do not supply it get a policy_denied error — not a soft warning.
# Set in .env (never commit)
OWNER_API_TOKEN=your-owner-token-hereWhat's New in v22.x
v22.7.1 (2026-07-07) — Subscriber key alias fix
Both
ALGOCHAINS_SUBSCRIBER_KEY(canonical) andALGOCHAINS_SUB_KEY(back-compat alias) are now accepted by both the Python server and the TS CLI (#242). Previously the CLI told users to setALGOCHAINS_SUB_KEYwhile the server only readALGOCHAINS_SUBSCRIBER_KEY, so a subscriber could auth to one component but not the other.Corrected subscriber tool count to 16 and documented the server-side Broker Hub.
v22.4 (2026-04-06) — UX & Team Onboarding
Complete README rewrite (plain English, team access)
scripts/quickstart.py— interactive setup wizard with health checksSAFETY_MODEL.md— answers "is this safe?" for every failure modetool_danger_tiers.py— machine-readable danger classification (0–3) for the documented 533-tool surfaceHTTP bridge
/toolsendpoint now returnsdanger_tier,safe_in_demo_mode, etc.get_bot_healthincludese2e_sentinel, desktop inference SLO, and decision latency SLO slices for signal-to-fill traceability
v22.3 (2026-04-06) — Proprietary Data Ingestion
ingest_csv_data— validate and ingest real OHLCV CSV files intostate/custom_data/ingest_json_signals— import pre-computed signals, ML features, labels, and regime tagsconnect_onyx_docs— index local research docs into Onyx foronyx_ask()/onyx_search()register_strategyandlist_ingested_data— register custom strategy specs and audit imported data
v22.2 (2026-04-21) — Kalshi Pipeline + Model Integrity
Kalshi prediction markets — AI ensemble → Kelly sizing → order execution
Subscriber tools — JWT tier auth,
get_subscriber_portfolio,get_marketplace_listingsUnified path resolver (
paths.py) —default_control_tower()works on Mac + WSL towerData backend chain — Databento → Massive S3 (back to 2003) → Polygon → yfinance
SHA-256 model integrity — startup check raises on tampered
.pkl, XGBoost JSON companion,model_manifest.jsonDrawdown Triple Penance —
drawdown_start_tsauto-logged on first daily loss hit (Bailey & LdP 2015)
v22.0 (2026-04-05) — MCP 2025-11-25 Full Compliance
Elicitation (human confirmation for high-value trades)
Durable Tasks (background backtest/optimization jobs)
SSE streaming transport
OIDC discovery endpoint
Trading guardrails with circuit breakers
AlphaLoop evolution daemon
See the full CHANGELOG.md for v21.x, v22.x, and legacy v26 audit entries.
Quick Setup Options (Pick Your Path)
Path | Credential needed | Best for | |
A | Demo mode | None | Market data, regime detection, tools exploration |
B | AlgoChains hosted paper | Subscriber API key (free signup) | Copy-trade MNQ bot, zero broker setup |
B-2 | Alpaca paper | Alpaca paper API key | Your own paper equity account |
C | Full live | Tradovate + others | Real futures/equities trading |
Option A — Demo Mode (No Credentials, 1 Minute)
pip install algochains-mcp-server
python scripts/quickstart.py --mode demoAvailable immediately (no credentials):
get_quote("AAPL")— live price for any symboldetect_market_regime()— trending / ranging / choppyget_macro_signals()— macro environment analysisdiscover_tools()— find any of the 533 toolsonyx_ask("any question")— knowledge base search
Option B — AlgoChains Hosted Paper (Free, No Broker Needed)
No Tradovate account. No Alpaca account. No broker credentials at all.
Sign up at algochains.ai — free hosted virtual paper account
Copy your subscriber key from the dashboard
Set it and run:
export ALGOCHAINS_SUBSCRIBER_KEY="<SUBSCRIBER_API_KEY>"
python scripts/quickstart.py --mode paperWhat unlocks immediately: local subscriber onboarding/status tools plus the hosted bridge subscriber surface for copy-trade signals from the live MNQ bot, paper P&L tracking, fill history, and self-directed paper orders filled at real quotes. See the Subscriber Onramp section above.
Option B-2 — Alpaca Paper (Your Own Broker)
export ALPACA_API_KEY=your-paper-key
export ALPACA_SECRET_KEY=your-paper-secret
export ALPACA_PAPER=true
python scripts/quickstart.py --mode paperOption C — Full Live Setup
cp .env.example .env
# Edit .env with Tradovate, Polygon, Databento, Slack credentials
python scripts/quickstart.py --health-check --mode liveGenerate IDE Config
python scripts/quickstart.py --generate-config cursor # Cursor
python scripts/quickstart.py --generate-config claude-desktop # Claude Desktop
python scripts/quickstart.py --generate-config windsurf # WindsurfWhich URL Do I Use?
Local installs and remote connectors use different transports:
Client | Use this | Why |
Cursor, Claude Desktop, Windsurf | Generated | These apps can spawn the local PyPI package on your machine. |
Claude.ai web/mobile custom connector | Public HTTPS URL such as | Claude.ai calls the server from Anthropic's infrastructure, so it cannot reach your |
Local remote-connector test |
| The tunnel provides the public |
For a mobile Claude test, the PyPI package alone is not enough because it runs locally.
Start the HTTP transport, expose it through a secure tunnel, then paste the tunnel's
https://.../mcp URL into Claude.ai:
pipx install "algochains-mcp-server[http]"
export ALGOCHAINS_HTTP_TRANSPORT_SECRET="<random-token>"
algochains-mcp-http --host 127.0.0.1 --port 8080
cloudflared tunnel --url http://127.0.0.1:8080Use the tunnel URL as the custom connector URL:
https://<cloudflared-subdomain>.trycloudflare.com/mcpIf the connector UI asks for authentication, use the value of
ALGOCHAINS_HTTP_TRANSPORT_SECRET as the bearer token. For production, replace the
temporary tunnel with a stable hosted endpoint such as https://mcp.algochains.ai/mcp
or your own domain behind Cloudflare.
Never expose owner/live trading tools publicly without bearer auth, WAF/IP restrictions, and strict tool policy checks. See Remote Connectors for the full transport matrix and security checklist.
Data Backends
AlgoChains uses a priority chain — best available source wins automatically:
Priority | Backend | Coverage | Use Case |
1 | Databento | XNAS.ITCH + XNYS.PILLAR; OHLCV-1d + OHLCV-1m | Futures tick data, live streaming |
2 | Massive S3 |
| Historical equity backtests, survival-bias-free universe |
3 | Polygon | REST bars + news snapshots | News features, intraday bars |
4 | yfinance | Free, ~5yr history | Dev fallback, swing bots |
Force a specific backend: DATA_BACKEND=databento|massive|polygon|yfinance in .env.
Command Center
URL | Status | Notes |
Live | Cloudflare Access — authenticate with your | |
Local dev | Always accessible without auth |
Run locally:
cd algochains-command-center
npm run dev # starts on :3333Start Cloudflare tunnel:
cloudflared tunnel run <your-tunnel-id> >> logs/cloudflared_cc.log 2>&1 &Dashboard panels (V22):
Bot Status Cards — process state, uptime, last signal, AI confidence
P&L Chart + Positions Table + Risk Dashboard
Bracket Status Panel + AI Ensemble Health + Live Trade Validation Feed (SSE)
Subscriber Protection Panel + System Health
Agentic Quick-Start Prompts
Copy these directly into Claude or Cursor:
Subscriber prompts (free, no broker needed)
Portfolio snapshot over the HTTP bridge:
"Run get_my_portfolio with my subscriber bridge key. What's my paper balance and P&L today?"
Signal stream check over the HTTP bridge:
"Call get_signal_stream for the MNQ bot with my subscriber bridge key. What signals fired in the last 2 hours?"
Weekly fill review:
"Run get_my_fills with limit=50. Break down P&L by day."
Marketplace discovery:
"Run get_marketplace_listings. What bots are available and what's each bot's asset class?"Live bot / operator prompts
Morning brief:
"Run get_macro_signals and get_live_bot_metrics. Summarize market conditions and P&L."
Bot health check:
"Run get_bot_health for all 4 bots. Flag anything that needs attention."
Pre-trade regime check:
"Before I place any orders, run detect_market_regime and check VIX. Should I trade today?"
Validate a backtest:
"Run validate_strategy_metrics: Sharpe 2.4, MaxDD 9%, WinRate 58%, 180 trades.
Does it pass the MCPT gate? What's the DSR?"
Prop fund compatibility:
"Use evaluate_strategy_for_prop_fund: MNQ scalper, $600 max daily loss, $2500 max DD,
$120 avg daily profit, holds overnight. Which fund should I target?"
Emergency system check:
"Run check_all_broker_credentials and check_rithmic_status. What's ready, what's missing?"
Tower dispatch:
"Dispatch an overnight Optuna sweep for MNQ to the desktop tower. 200 trials, Sharpe objective."Supported Brokers
Connect brokers server-side at algochains.ai/account/brokers/ (the Broker Hub — no local daemon to run). A $50k virtual paper account is auto-provisioned on signup, so you can start with no broker at all.
Broker | Asset Classes | Status |
Tradovate | Futures (MNQ, CL, MES, NQ, ES, GC) | ✅ Live — email+password OAuth, or your own API Key + Secret as a fallback |
Alpaca | Equities, ETFs, Options, Crypto | ✅ Live + Paper |
OANDA | Forex (50+ pairs) | ✅ Live |
FTMO / MT5 | Prop-firm accounts (MetaTrader 5) | ✅ Live |
Robinhood | Futures | ⏳ Coming soon |
Interactive Brokers | Stocks, Futures, Options, Forex | ✅ Live ( |
Kalshi | Prediction markets (US events) | ✅ Live |
E*TRADE | Equities, Options, ETFs | ✅ OAuth 1.0a |
Rithmic | Futures via prop fund platforms | ⏳ DRY_RUN (vendor NDA pending) |
Charles Schwab | Equities, Options, Futures | ⚠️ Stubs (OAuth 2.0 PKCE) |
# Check all broker credential status at once
check_all_broker_credentials() # masked — never exposes valuesSubmit Your Own Algo, Managed Hosting & API
Submit-your-own-algo → auto-graduation
Submit a strategy and it paper-trades on AlgoChains, then auto-graduates to live once its rolling live performance tracks its backtest:
Graduate to live when
live_sharpe_30d >= 0.80 × backtest_oos_sharpe.Retire when
live_sharpe_30d < 1.0.Anti-overfit OOS-Sharpe caps per timeframe (with minimum trade counts):
Timeframe
Max accepted OOS Sharpe
Min trades
Daily
5
20
Hourly
7
50
15-min
10
80
5-min
12
100
See MARKETPLACE_CREATOR_GUIDE.md for the full publishing flow.
Optional Managed Hosting — $49/mo
Don't want to run infra? Managed Hosting runs your tenant on GCP Cloud Run (scale-to-zero, per-tenant) for $49/mo.
API — OpenAPI 3.1 + Postman
Downloadable, always current:
OpenAPI 3.1 JSON —
https://algochains.ai/docs/openapi.jsonOpenAPI 3.1 YAML —
https://algochains.ai/docs/openapi.yamlPostman collection —
https://algochains.ai/docs/postman-collection.json
Base URL https://mcp.algochains.ai (api.algochains.ai is a different service and does not
answer /api/mcp). Subscriber requests authenticate with the X-Api-Key header.
⚠️ Namespace note: Do not co-register this package (
algochains-mcp-server— trading/signals) alongsidealgochains-library-mcp(Roo's NL backtesting MCP) under the samealgochainsalias. Give them distinct aliases (e.g.algochains+algochains-backtest).
Architecture
Your AI (Claude / Cursor / ChatGPT)
│
│ MCP 2025-11-25 (stdio or HTTP + SSE)
▼
AlgoChains MCP Server
├── 533 tools / 181 smart-mode (21 domains)
├── Trading Guardrails (hard-coded limits, AI loop detection)
├── Account Protection (12 pre-trade guards)
├── Onyx RAG (semantic search — 400+ docs + 472 skills)
└── Circuit Breakers (per-tool rate limits, daily loss stops)
│
├── Tradovate (MNQ, CL, MES, NQ futures — live fills)
├── Alpaca (equities, crypto, options)
├── OANDA (forex)
├── Databento (tick-level data — XNAS.ITCH)
├── Massive S3 (day bars back to 2003)
├── Polygon (real-time bars, news)
└── FRED, CBOE, Kalshi, Polymarket (macro / alt data)Data policy: No synthetic data. No mock fills. No placeholder values. Every tool connects to a real API or fails closed with an explicit error.
Docs
File | Purpose |
Is this safe? Failure modes, guardrails, team access | |
Full version history | |
Confirmed bugs, gotchas, operational surprises | |
Developer key setup, scopes, and bridge auth constraints | |
2026-06-28: all 3 writers (Django, MCP, Stripe) mint | |
Subscriber onboarding, stdio-vs-bridge tools, scopes, and copy-trade constraints | |
Numerai tournament tool sequence, upload gates, and troubleshooting | |
Tradovate endpoint mapping vs community server | |
| |
Measured tool call latencies (Mac M3 Max, real calls) | |
Publish a validated bot; subscriber copy-trade pipeline setup | |
AlgoClaw agent skill system |
Built by Tyler Reynolds — experimental AI trading infrastructure.
Safety · Changelog · Command Center · Marketplace
Experimental software connected to live trading accounts. Use at your own risk.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/AlgoChains/algochains-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server