CryptoQuant on-chain analytics plugins for Claude
npx claudepluginhub cryptoquantofficial/cryptoquant-skillsCryptoQuant on-chain analytics for Claude - Bitcoin, Ethereum, exchange flows, market indicators
On-Chain Analytics in Your AI Assistant
Installation • Features • Slash Commands
CryptoQuant Plugin for Claude brings on-chain analytics directly into your Claude experience:
This plugin combines two layers for optimal AI-powered analytics:
You get AI-powered on-chain analysis - ask questions in natural language, get data-driven insights instantly.
| Scenario | Without Skills | With Skills |
|---|---|---|
| User asks "Is Bitcoin overvalued?" | Calls random metrics, struggles to interpret | Routes to MVRV, NVT, Puell; interprets "MVRV at 2.1 = Fair value" |
| User asks "고래들 움직임?" | May not understand Korean intent | Routes to whale-ratio, netflow; responds in Korean |
| User asks "Quick market check" | Verbose multi-step process | /crypto-market → 30-second summary with signal |
Step 1: Install the plugin
/plugin marketplace add CryptoQuantOfficial/cryptoquant-skills
/plugin install cryptoquant
Step 2: Restart Claude Code
Step 3: Run /crypto to initialize. Done!
The MCP server is available as a separate package: cryptoquant-mcp
Add to your MCP config file:
| App | Config File |
|---|---|
| Claude Desktop (Mac) | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Claude Desktop (Windows) | %APPDATA%\Claude\claude_desktop_config.json |
| Claude Code | ~/.claude/mcp.json or project .mcp.json |
| Cursor | Project .cursor/mcp.json |
{
"mcpServers": {
"cryptoquant": {
"command": "npx",
"args": ["-y", "cryptoquant-mcp"]
}
}
}
| Skill | Command | Description |
|---|---|---|
crypto | /crypto | Main skill - initialize session, on-chain data analysis |
crypto-market | /crypto-market | Quick market summary |
crypto-signal | /crypto-signal | Buy/sell/hold trading signal |
crypto-whale | /crypto-whale | Track whale activity |
| Agent | Role |
|---|---|
market-analyst | Comprehensive market analysis |
whale-tracker | Large holder movement monitoring |
Ask questions in any language - Claude will route to the right metrics:
| Query | Intent | Metric |
|---|---|---|
| "비트코인 가격 전망이 어때?" | VALUATION | MVRV |
| "Is BTC overvalued?" | VALUATION | MVRV |
| "고래들 움직임 보여줘" | WHALE_ACTIVITY | whale-ratio |
| "What's the funding rate?" | LEVERAGE | funding-rates |
| "익절/손절 상황?" | PROFIT_BEHAVIOR | SOPR |
See INTENT_MAP.md for full intent-to-metric routing.
Initialize your CryptoQuant session:
/crypto
→ Authenticates and shows your plan/permissions
Quick market summary:
/crypto-market # Bitcoin (default)
/crypto-market eth # Ethereum
Get buy/sell/hold trading signal:
/crypto-signal # Bitcoin (default)
/crypto-signal eth # Ethereum
Track whale movements:
/crypto-whale # Last 24h
/crypto-whale 7d # Last 7 days
Add your API key to the MCP config:
{
"mcpServers": {
"cryptoquant": {
"command": "npx",
"args": ["-y", "cryptoquant-mcp"],
"env": {
"CRYPTOQUANT_API_KEY": "your-api-key"
}
}
}
}
Call initialize() with your API key:
initialize(api_key="your-api-key")