AI trading brain for crypto perps — composite signals, funding rate arb scanning, and market regime detection via MCP
crypto-quant-signal-mcp is an early-stage TypeScript project in the AI payments / x402 ecosystem, focused on ai-agents, base, crypto, defi. It currently has 5 GitHub stars and 4 forks, and sits alongside related tools like cerebrus-pulse-mcp, mcpagent, fia-signals-mcp, spraay-x402-mcp, wolfpack-sdk, CloddsBot.
AlgoVault is the brain layer for AI trading agents — one MCP call returns verdict, confidence, and regime across major crypto perpetual venues.
91.3% PFE win rate across 134,276+ verified calls. Merkle-verified on Base L2. Don't trust — verify.
100 free calls/month. HOLDs never cost. Start in 30 seconds.
🤖 Try Free in Telegram · algovault.com · Live Track Record · How it works · Sign Up · Docs
No code. No API key. No install. The server speaks Streamable HTTP at https://api.algovault.com/mcp — any Model Context Protocol client connects directly.
1. Add the connector. In Claude → Settings → Integrations → Add custom connector:
| Field | Value |
|---|---|
| Name | Crypto Quant Signal |
| URL | https://api.algovault.com/mcp |

2. Ask for a call. In plain language:
"Get me a trade call for ETH on the 4h timeframe"

Your Claude now has a quant analyst built in. Prefer local? Run npx -y crypto-quant-signal-mcp.
Running locally on npm 12+? npm v12 disables dependency install scripts by default. AlgoVault's optional local SQLite mode uses the native
better-sqlite3module — if you install it into a project, runnpm approve-scripts(ornpm install --allow-scripts) to build it. The hosted HTTP transport (api.algovault.com/mcp) needs no local build.
One API call. One verdict. Not 8 raw indicators. get_trade_call returns a directional BUY / SELL / HOLD with a confidence score and the detected market regime — a composite verdict, not a data dump for your agent to interpret.
Under the hood, a self-tuning model fuses momentum, trend structure, derivatives positioning, open interest, and volume into one weighted call. Every call reports market regime — trending, ranging, or volatile — alongside direction and confidence. Directional calls fire only when conviction clears the threshold; roughly 99% of evaluations return HOLD.
{
"call": "BUY",
"confidence": 78,
"price": 84250.50,
"indicators": {
"funding_rate": 0.0001,
"funding_24h_avg": 0.00008,
"funding_state": "NORMAL",
"oi_change_pct": 2.4,
"volume_24h": 2381602633,
"trend_persistence": "HIGH",
"breakout_pending": "INACTIVE"
},
"regime": "TRENDING_UP",
"reasoning": "Trending regime, upward bias. Funding pressure mild. Volatility neither expanding nor compressed. Trend persistence elevated; momentum structure. Strong conviction from aligned signals.",
"timestamp": 1712764800,
"coin": "BTC",
"timeframe": "1h",
"also_see": [
{ "coin": "ETH", "timeframe": "1h", "confidence": 82 },
{ "coin": "SOL", "timeframe": "15m", "confidence": 73 }
],
"_algovault": {
"version": "1.24.0",
"tool": "get_trade_call",
"compatible_with": ["crypto-quant-risk-mcp", "crypto-quant-backtest-mcp"]
}
}
The _algovault block makes outputs composable: downstream risk and backtest tools accept the object directly.
91.3% PFE Win Rate · 134,276 trade calls · 50 on-chain batches · 98.9% HOLD rate
Every call is hashed at emission and anchored on Base L2 in daily Merkle batches. We cannot edit history.
The full record is public and on-chain — no cherry-picking, no survivorship bias:
0x6485…0f81AlgoVault is also a verified agent on the ERC-8004 Identity Registry (Base L2), agentId 44544 — a portable, on-chain handle AI orchestrators can resolve.
AlgoVault is drop-in for every MCP-spec client, every major agent framework, and every official exchange Agent Trade Kit — no SDK, no wrapper. It serves Streamable HTTP at https://api.algovault.com/mcp; tools/list + resources/list is the API surface.
MCP clients.
| Client | Config |
|---|---|
| Claude Desktop | Settings → Integrations → Add custom connector → https://api.algovault.com/mcp |
| Claude Code (CLI) | claude mcp add crypto-quant-signal https://api.algovault.com/mcp |
| Cursor | ~/.cursor/config.json → mcpServers block → url: "https://api.algovault.com/mcp" |
| Cline | VS Code Cline extension → MCP server settings → add Streamable HTTP server |
| Codex (OpenAI CLI) | ~/.codex/config.toml → [mcp_servers.algovault] table + url = "https://api.algovault.com/mcp" (or codex mcp CLI) |
| Windsurf | ~/.codeium/windsurf/mcp_config.json → mcpServers.algovault.serverUrl = "https://api.algovault.com/mcp" |
| Continue.dev | config.yaml → mcpServers: [{ name: algovault, type: streamable-http, url: "https://api.algovault.com/mcp" }] |
| Any other MCP-spec-compliant client | Configure the Streamable HTTP transport with URL https://api.algovault.com/mcp |
Agent frameworks. First-party tutorials pair AlgoVault with each framework's canonical MCP adapter — copy-pasteable demo code, no SDK.
| Framework | Tutorial | Runnable demo | Mirror |
|---|---|---|---|
| LangChain | docs/integrations/langchain.md |
examples/langchain/demo.py |
algovault.com/integrations/langchain |
| LlamaIndex | docs/integrations/llamaindex.md |
examples/llamaindex/demo.py |
algovault.com/integrations/llamaindex |
| Microsoft Agent Framework | docs/integrations/maf.md |
examples/maf/demo.py |
algovault.com/integrations/maf |
| CrewAI | docs/integrations/crewai.md |
examples/crewai/demo.py |
algovault.com/integrations/crewai |
Each demo is runnable as python examples/<framework>/demo.py BTC 4h — gets a real BUY/SELL/HOLD verdict from api.algovault.com/mcp, prints it. ≤5 minutes to first call.
Exchange Agent Trade Kits. AlgoVault returns the analytics; your agent's risk policy decides what to execute. All demos run testnet/demo only.
The MCP tools live at https://api.algovault.com/mcp. Every asset works across the full supported timeframe range, on major crypto perpetual venues.
get_trade_call (alias get_trade_signal) — composite BUY/SELL/HOLD verdict with confidence + regime, any asset, any timeframe.scan_trade_calls — scans the top-N perps by open interest on a venue; returns every actionable call in one shot.scan_funding_arb — cross-venue funding-rate spreads across 7 venues (Hyperliquid, Binance, Bybit, Gate, KuCoin, Aster, OKX), ranked. The only MCP server doing multi-exchange derivatives arbitrage.get_market_regime — classifies TRENDING_UP / TRENDING_DOWN / RANGING / VOLATILE for strategy selection.search_knowledge + chat_knowledge — free BM25 search and grounded Q&A over the full knowledge bundle.Performance is exposed as a read-only MCP resource: performance://signal-performance (aggregated PFE win rate, never raw outcomes). Full parameter reference at algovault.com/docs.
Single-prompt wrappers over 1–3 tool calls — regime gating, multi-timeframe consensus, funding-arb monitoring, and more. Install with claude plugin install AlgoVaultLabs/algovault-skills; browse at algovault.com/skills.
| # | Slug | Name | Difficulty | Tools |
|---|---|---|---|---|
| 01 | quick-btc-check |
Quick BTC Check | Beginner | get_trade_signal |
| 02 | portfolio-scanner |
Portfolio Scanner | Intermediate | get_trade_signal |
| 03 | regime-aware-trading |
Regime-Aware Trading | Intermediate | get_market_regime, get_trade_signal |
| 04 | funding-arb-monitor |
Funding Arb Monitor | Intermediate | scan_funding_arb |
| 05 | full-3-tool-pipeline |
Full 3-Tool Pipeline | Advanced | get_market_regime, get_trade_signal, scan_funding_arb |
| 06 | multi-timeframe-confirmation |
Multi-Timeframe Confirmation | Advanced | get_trade_signal |
| 07 | tradfi-rotation |
TradFi Rotation | Advanced | get_market_regime, get_trade_signal |
| 08 | risk-gated-entry |
Risk-Gated Entry | Advanced | get_market_regime, get_trade_signal |
| 09 | funding-sentiment-dashboard |
Funding Sentiment Dashboard | Advanced | get_market_regime |
| 10 | contrarian-meme-scanner |
Contrarian Meme Scanner | Advanced | get_market_regime, get_trade_signal |
| 11 | divergence-detector |
Divergence Detector | Advanced | get_market_regime, get_trade_signal |
| 12 | hourly-digest-bot |
Hourly Digest Bot | Advanced | get_trade_signal, get_market_regime |
| 13 | hedging-advisor |
Hedging Advisor | Advanced | get_market_regime, get_trade_signal, scan_funding_arb |
| 14 | volatility-breakout-watch |
Volatility Breakout Watch | Advanced | get_market_regime, get_trade_signal |
| 15 | cross-asset-correlation |
Cross-Asset Correlation | Advanced | get_trade_signal |
| 16 | funding-cash-and-carry |
Funding Cash-and-Carry | Advanced | scan_funding_arb, get_trade_signal |
| 17 | weekend-vs-weekday-patterns |
Weekend vs Weekday Patterns | Research | get_trade_signal, get_market_regime |
| 18 | agent-portfolio-rebalance |
Agent Portfolio Rebalance | Advanced | get_market_regime |
| 19 | smart-dca-bot |
Smart DCA Bot | Advanced | get_trade_signal |
| 20 | multi-agent-war-room |
Multi-Agent War Room | Expert | get_market_regime, get_trade_signal, scan_funding_arb |
Quota-only tiers. Every tier gets all venues, all assets, all timeframes — you pay for call volume, nothing else. HOLD verdicts are always free.
| Feature | Free | Starter ($9.99/mo) | Pro ($49/mo) | Enterprise ($299/mo) | x402 (per call) |
|---|---|---|---|---|---|
| Exchanges | All 15 | All 15 | All 15 | All 15 | All 15 |
| Assets | All 740+ | All 740+ | All 740+ | All 740+ | All 740+ |
| Asset classes | Crypto + TradFi | Crypto + TradFi | Crypto + TradFi | Crypto + TradFi | Crypto + TradFi |
| Timeframes | All 11 | All 11 | All 11 | All 11 | All 11 |
| Funding arb results | Top 5 | Unlimited | Unlimited | Unlimited | Unlimited |
| Track record | Full access | Full access | Full access | Full access | Full access |
| Monthly calls | 100/mo | 3,000/mo | 15,000/mo | 100,000/mo | Unlimited |
| Support | Community | Priority | Dedicated | — | |
| Price | $0 | $9.99/mo | $49/mo | $299/mo | $0.01–0.05/call |
| HOLD calls | Free | Free | Free | Free | Free |
* HOLD verdicts (engine says "don't trade") are always free across all tiers — no x402 charge, no quota deduction. We only get paid when we see a tradeable opportunity.
Subscriptions: Sign up at api.algovault.com/signup. Starter ($9.99/mo) unlocks 3,000 calls/mo. API key delivered instantly after checkout.
x402 micropayments: AI agents pay per HTTP call with USDC on Base — no signup, no API key, no billing. The payment receipt is the credential. See x402.org.
exchange parameter.The
exchangeparameter now accepts 15 venues — MCP clients cachetools/listat session start, so toggle the connector off/on (or restart the MCP connection) to pick up the new options.
scan_funding_arb expanded from 3 to 7 — Hyperliquid, Binance, Bybit, Gate, KuCoin, Aster, and OKX — with interval-correct annualization per venue and a per-leg liquidity filter, so only tradeable spreads surface.MCP clients cache
tools/listat session start — toggle the connector off/on (or restart the MCP connection) to pick up the updatedscan_funding_arb.
Refresh your MCP client to pick up this release. MCP clients cache
tools/listat session start — Claude.ai/Desktop: toggle the connector off+on; Cursor/Cline: restart the MCP server connection.
Local mode: zero telemetry — call history stays on your machine. Remote mode: request metadata logged for analytics (IP hashed, never stored raw). See the privacy policy.
MIT
Disclaimer: AlgoVault provides directional entry interpretation for AI agents. Exit timing is determined by your agent or strategy. This is not financial advice. Past performance does not guarantee future results.
Built by AlgoVault Labs
algovault.com ·
how it works ·
track-record ·
MCP endpoint ·
Telegram bot
MCP server for real-time crypto intelligence — 15 tools for technical analysis, liquidation heatmaps, market stress, funding rates across 50+ Hyperliquid perpetuals. CLI + MCP. x402 micropayments.
Trustless Agent protocol on Base. ERC-8004 identity, x402 micropayments, MCP-native, AgentKit + CDP wallets, EIP-7702, ERC-4337, ERC-4626 vault, EAS attestations, zkML-verifiable inference. Open-source MIT, real yield, fee switch live.
AI-native crypto market intelligence MCP server. Regime detection, funding rates, liquidations, and more.
MCP server for the Spraay x402 Gateway — 148 pay-per-call tools for AI inference, batch payments, DeFi, research & compute on Base, with Solana, Ethereum, XRP & Stellar rails. USDC via x402, no API keys.
On-chain security and market intelligence for AI agents on Base — 14 services via x402, MCP, A2A, and ACP. EIP-712 signed attestations.
Open Source AI trading agent that operates autonomously across 1000+ markets - Polymarket, Kalshi, Binance, Hyperliquid, Solana DEXs, 5 EVM chains. Scans for edge, executes instantly, manages risk while you sleep. Agent commerce protocol for machine-to-machine payments. Self-hosted. Built on Claude.
Your AI trading terminal assistant for US stocks, commodities, forex, and crypto.
The living ecosystem where AI agents complete tasks through workflow loops, improve through iterative execution, are evaluated by mentor agents or humans in the loop, and turn completed work into reusable work experience and data to improve future agents.
The living ecosystem where AI agents complete tasks through workflow loops, improve through iterative execution, are evaluated by mentor agents or humans in the loop, and turn completed work into reusable work experience and data to improve future agents.
The trust layer for agent-to-agent commerce — natural-language mandates, ERC-7710 delegated permissions, x402 payments, escrow, and dispute resolution as one open, catch-all Agent Skill / Claude Code plugin.
The self-improving LLM router that optimize your agentic workflows with every runs, works with any harnesses, any models, any loops.
Multi-Agent AI Task Orchestrator 2026