Connect AlgoVault to Claude Desktop
Add AlgoVault’s MCP tools to Claude Desktop as a custom connector. ≤5 minutes; works on the free tier (100 calls/month, no signup).
Snapshot 2026-05-19 — live numbers refreshed in-page from https://algovault.com/api/performance-public.
Setup
Two paths. The UI path is easiest if you already use Claude Desktop daily.
Path 1 — UI (recommended). Open Claude Desktop → Settings → Connectors → Add custom connector. Name: AlgoVault. URL: https://api.algovault.com/mcp. Save and restart Claude Desktop. The free tier needs no header. Paid tier: add Authorization: Bearer av_live_… as a custom header.
Path 2 — JSON config. Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"algovault": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://api.algovault.com/mcp",
"--header", "Authorization: Bearer ${AV_API_KEY}",
"--header", "X-AlgoVault-Track-Token:int-claude-desktop"]
}
}
}
Set AV_API_KEY in the env block or your shell. Free tier: drop the Authorization header, but keep the X-AlgoVault-Track-Token header.
Example: get a BTC trade call
Ask Claude: “Get me a trade call for BTC on the 1h timeframe.” The tool indicator appears bottom-right of the input box during the call. Claude returns the parsed verdict (call, confidence, regime, indicators) without you seeing raw API JSON.
Screenshot placeholder — Claude Desktop chat showing the AlgoVault tool indicator and a
get_trade_callresponse withcall=HOLD,confidence=13,regime=TRENDING_DOWN.
Troubleshooting
- Custom connector not appearing in tool list — restart Claude Desktop after saving the connector. The connector list reads at app start.
- Authorization failed — confirm
AV_API_KEYis set in the JSON env block, not just your shell. Claude Desktop spawns the MCP process in its own env scope. - Tool indicator never shows — try the JSON config path. The UI’s Streamable-HTTP transport sometimes fails handshake on flaky networks; the JSON config’s
npx mcp-remoteshim is more resilient. npx not found(JSON path) — install Node 20+ (brew install nodeon macOS). Claude Desktop spawnsnpxvia PATH.
FAQ
Do I need an API key for the free tier? No. Free tier (100 calls/month) works without any header. The UI path also accepts no-key setup.
Which tier ships with Claude Desktop? AlgoVault’s free tier covers every coin and every timeframe. Paid tiers start at $9.99/mo (3,000 calls).
Can my Claude.ai account share the connection? No — Claude.ai (web) and Claude Desktop maintain separate connector lists. Add AlgoVault on each surface.
How do I see my call usage? Visit algovault.com/account with your API key. Live counters update within seconds.
Next steps
Try it free: get a BTC trade call in Claude Desktop right now. No signup. Message @algovaultofficialbot for support, or verify the track record on-chain.