Introduction
Getting started
Connect AI Agents to Blockchain Data with the Leading Crypto MCP
Hive Intelligence provides the #1 Crypto MCP server for AI agents. Access real-time blockchain data across 60+ networks through a standardized Model Context Protocol (MCP) interface. Works with Claude, ChatGPT, LangChain, and custom AI agents.
275+ tools | 60+ blockchains | Real-time data | AI-optimized | Free tier available
Quick Start
Option 1: Claude Desktop (MCP)
Add to your Claude Desktop configuration:
{
"mcpServers": {
"hive-intelligence": {
"url": "https://hiveintelligence.xyz/mcp"
}
}
}
Then ask Claude: "What's the current price of Bitcoin?"
Option 2: REST API
Make direct HTTP requests:
curl -X POST https://api.hiveintelligence.xyz/api/execute \
-H "Content-Type: application/json" \
-d '{
"toolName": "get_price",
"arguments": {"ids": "bitcoin", "vs_currencies": "usd"}
}'
Option 3: Python
import requests
API_URL = "https://api.hiveintelligence.xyz/api/execute"
response = requests.post(API_URL, json={
"toolName": "get_price",
"arguments": {"ids": "bitcoin", "vs_currencies": "usd"}
})
price = response.json()
print(f"Bitcoin: ${price['bitcoin']['usd']}")
Option 4: JavaScript
const API_URL = "https://api.hiveintelligence.xyz/api/execute";
const response = await fetch(API_URL, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
toolName: "get_price",
arguments: { ids: "bitcoin", vs_currencies: "usd" }
})
});
const price = await response.json();
console.log(`Bitcoin: $${price.bitcoin.usd}`);
What Can You Build?
Trading Bots
AI agents that analyze market conditions and execute trades based on real-time data.
Portfolio Trackers
Monitor wallet balances, DeFi positions, and NFT holdings across chains.
Research Assistants
Chatbots that answer questions about tokens, protocols, and market trends.
Security Analyzers
Tools that check token contracts for honeypots, rug pulls, and risks.
DeFi Dashboards
Applications showing TVL, yields, and protocol analytics.
Why Hive Intelligence?
| Challenge | Traditional APIs | Hive Intelligence |
|---|---|---|
| Chain access | Multiple integrations | Single interface |
| Data format | Inconsistent | AI-optimized JSON |
| Tool discovery | Manual documentation | Auto-discovery |
| Setup time | Hours | 5 minutes |
Featured Tools
| Category | Tools | Example |
|---|---|---|
| Market Data | 58 | get_price, get_trending |
| DEX Analytics | 56 | get_trending_pools, get_pool_info |
| DeFi | 23 | get_protocols, get_yield_pools |
| Security | 19 | get_token_security, check_malicious_address |
| NFT | 30 | get_nft, get_nft_market_chart |
Next Steps
- Quick Start Guide - Detailed setup instructions
- Tools Reference - Complete tool documentation
- API Documentation - REST API details
- FAQ - Common questions answered

