Connect AlgoVault to Claude Code
Wire AlgoVault into your Claude Code CLI as a project-scoped MCP server. Commit .mcp.json so every teammate gets the same setup.
Snapshot 2026-05-19 — live numbers refreshed in-page from https://algovault.com/api/performance-public.
Setup
One-liner (recommended):
claude mcp add --transport http --scope project algovault \
https://api.algovault.com/mcp \
--header "Authorization: Bearer $AV_API_KEY" \
--header "X-AlgoVault-Track-Token:int-claude-code"
This writes .mcp.json in your repo root. Commit it; teammates clone, run claude, and the connector is already wired.
.mcp.json shape (auto-generated):
{
"mcpServers": {
"algovault": {
"type": "http",
"url": "https://api.algovault.com/mcp",
"headers": {
"Authorization": "Bearer ${AV_API_KEY}",
"X-AlgoVault-Track-Token": "int-claude-code"
}
}
}
}
Set AV_API_KEY in your shell or .envrc.
Example: get a BTC trade call
In a Claude Code session, type /mcp to list connected servers. AlgoVault should appear with 4 tools (get_trade_call, get_trade_signal, scan_funding_arb, get_market_regime). Then ask: “Use AlgoVault to get a trade call for BTC 4h.” Claude Code shows the tool call inline; the returned JSON pretty-prints in the response.
Screenshot placeholder — Claude Code terminal showing
/mcplist with AlgoVault + 4 tools and aget_trade_callresponse.
Troubleshooting
- “Server not initialized” on first call — Claude Code expects the 3-step MCP handshake; the
httptransport handles this automatically. If you see this error, your.mcp.jsontypemight be set tosseinstead ofhttp. AV_API_KEYnot set in env — Claude Code reads from the shell that launched it. Use direnv or set the key in~/.zshrc..mcp.jsonnot picked up — Claude Code reads.mcp.jsonfrom the CWD at session start. Restart Claude Code from the repo root.403 Forbidden— your key is expired or wrong tier. Visitalgovault.com/accountto verify.
FAQ
Project scope vs user scope? Project (.mcp.json in repo root) shares with the team. User (~/.claude/mcp.json) is private.
Free tier works? Yes. Drop the --header arg from claude mcp add. 100 calls/month, all coins + timeframes.
Multiple MCP servers? Yes — repeat claude mcp add per server.
How does this differ from Claude Desktop? Claude Code is the CLI; Claude Desktop is the chat app. Both run on the same Claude family but use separate config files.
Next steps
Add AlgoVault to your strategy-dev repo in 30 seconds. Message @algovaultofficialbot for support, or see the verified track record.