Drop AlgoVault into any MCP-compatible client, any major agent framework, or any exchange Agent Trade Kit. Pick your path below.
AlgoVault is the composite-verdict layer for AI trading agents — one JSON call replaces 26 raw indicators, fused across 5 exchanges, anchored on Base L2 (verifiable at algovault.com/track-record).
Your AlgoVault API key works across every MCP-compatible client. Free tier (no key) too — 100 calls/month, every coin, every timeframe.
Native Streamable-HTTP MCP. AlgoVault tools (get_trade_call, scan_funding_arb, get_market_regime) callable in any chat.
Settings → Connectors → Add custom connector, or edit claude_desktop_config.json
IDE-native MCP. Cursor's coding agent pulls live signals while editing strategy code.
Edit ~/.cursor/mcp.json (global) or .cursor/mcp.json (project)
VSCode-side coding agent with AlgoVault tools available.
Cline panel → MCP Servers → Remote Servers tab, or edit cline_mcp_settings.json
Per-project MCP. Useful for backtest / strategy-dev repos. Team-shared via .mcp.json.
claude mcp add --transport http … --header … — or commit .mcp.json to repo root
Auto-managed connection via Smithery registry. Easiest install across clients.
npx -y @smithery/cli install crypto-quant-signal-mcp --client <name>
Building on a major agent framework? AlgoVault MCP plugs into 4 of them via the framework's canonical MCP-adapter library. Each pairing ships with a runnable Python demo.
AlgoVault tools as LangChain BaseTool objects in any create_react_agent or LangGraph workflow.
pip install langchain-mcp-adapters · MultiServerMCPClient with streamable HTTP
AlgoVault tools as LlamaIndex FunctionTool objects in any FunctionAgent or ReActAgent.
pip install llama-index-tools-mcp · BasicMCPClient + McpToolSpec
AlgoVault tools called directly or handed to any ChatAgent in the MAF ecosystem.
pip install agent-framework · MCPStreamableHTTPTool(url=…)
AlgoVault tools as CrewAI BaseTool objects in any Crew or single Agent workflow.
pip install crewai 'crewai-tools[mcp]' · MCPServerAdapter
Already running an exchange's Agent Trade Kit? Pair AlgoVault's composite verdict with the kit's execution layer.
Composite verdict + official Binance Skills Hub. Agent fetches signals, decides, executes against Binance's testnet.
claude plugin install binance/binance-skills-hub · Spot Testnet execution
Composite verdict + OKX's full execution surface. Agent reads signals, places orders across spot or derivatives via one MCP server.
npx -y @okx_ai/okx-trade-mcp · 83 execution tools (spot, swap, futures, options, grid)
Composite verdict + Bybit's official MCP server. Agent fetches AlgoVault signals, places perpetual + conditional orders via Bybit testnet.
npx -y bybit-official-trading-server · Linear Perpetual + conditional orders
Composite verdict + Bitget's MCP server inside a dedicated AI account. Agent-native execution; isolate from your main funds.
npx -y bitget-mcp-server · GetClaw agent-native execution
Exchange logos and names are trademarks of their respective owners. Used for nominative reference to integration tutorials. No partnership or endorsement implied.
Already running a downstream trading platform? AlgoVault verdicts plug in via reference examples. Each ships with code or a documented integration pattern.
Agent-native trading marketplace. POST AlgoVault verdicts to your AI-Trader signal feed.
examples/ai4trade/transform.ts
Production-grade Python algo engine. Subscribe to AlgoVault verdicts as in-process Data objects.
examples/nautilus_trader/transform.py
Hosted crypto bot platform. Webhook AlgoVault verdicts into your Signal Bot.
examples/3commas/transform.ts
Self-hosted AI quant OS. Cross-MCP orchestration pattern for agents bound to both.
examples/quantdinger/README.md
Cloud crypto bot marketplace. Webhook AlgoVault verdicts into your automated strategy.
examples/cryptohopper/transform.ts
Open-source algo trading framework. Map AlgoVault verdicts to in-process orders.
examples/hummingbot/transform.py
Open-source Python trading bot. Map AlgoVault verdicts to strategy entry/exit signals.
examples/freqtrade/transform.py
WEBHOOKS
Register an endpoint. We POST a signed event the instant a Trade Call fires or the regime shifts.
Your bot flattens or widens stops before the drawdown.
Every event carries an on-chain verify link. Verify, don’t trust.
curl -s -X POST https://api.algovault.com/api/webhooks \
-H "Authorization: Bearer $ALGOVAULT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://yourbot.example.com/hook","events":["trade_call","regime_shift"]}'