CryptoQuant MCP Server
On-chain analytics for Claude and AI coding agents.
Bring CryptoQuant's on-chain and market data into your AI client. Ask in natural language — any language — and get real-time metrics, valuation signals, and market interpretation routed to the right data automatically.
What you can do
- Valuation — MVRV, SOPR, NUPL, realized price ("Is BTC overvalued?")
- Exchange & whale flows — inflows/outflows, whale-ratio, large-holder movement
- Derivatives & leverage — funding rates, open interest
- Multilingual — query in English, Korean, or any language; intent routes to the right metric
- 245+ endpoints across BTC, ETH, ALT, Stablecoin, ERC20, TRX, and XRP
Example prompts
- "Is BTC overvalued right now?"
- "Show me exchange outflows this week"
- "What's the current funding rate?"
- "비트코인 가격 전망이 어때?"
Tools
| Tool | Description |
|---|---|
initialize | Start a session with your API key; returns plan info |
discover_endpoints | Browse 245+ available endpoints |
get_endpoint_info | Parameter details for an endpoint |
query_data | Query raw metric and market data |
describe_metric | Metric definitions and thresholds |
list_assets | Supported assets |
reset_session | Clear the session |
Connect (remote — recommended)
Add a custom connector in Claude.ai or Claude Desktop:
- Name: CryptoQuant
- URL:
https://mcp.cryptoquant.com/mcp
Then choose API Key or Keyless auth. Keyless uses a shared rate-limit pool — use your own key for dedicated limits.
Config-based clients (Claude Desktop / Cursor): { "mcpServers": { "CryptoQuant": { "command": "npx", "args": ["mcp-remote", "https://mcp.cryptoquant.com/mcp"] } } }
Claude Code: claude mcp add --transport http CryptoQuant https://mcp.cryptoquant.com/mcp
Local install (npm)
{ "mcpServers": { "cryptoquant": { "command": "npx", "args": ["-y", "cryptoquant-mcp"], "env": { "CRYPTOQUANT_API_KEY": "your-api-key" } } } } Requires Node.js v18+.
Authentication
Get your API key at https://cryptoquant.com/settings/api. Keyless mode is available on the remote server for quick testing.
Links
- GitHub: https://github.com/CryptoQuantOfficial/cryptoquant-mcp
- Setup guide: https://userguide.cryptoquant.com/api/mcp-server-beta/remote-mcp-recommended
- Website: https://cryptoquant.com
MIT licensed.
サーバー設定
{
"mcpServers": {
"cryptoquant": {
"command": "npx",
"args": [
"-y",
"cryptoquant-mcp"
],
"env": {
"CRYPTOQUANT_API_KEY": "your-api-key"
}
}
}
}