Hive Intelligence - Crypto MCP Server

The Crypto MCP for Intelligent AI Agents

Connect AI systems to 60+ blockchains instantly. Process 250TB of data daily through a single, standardized interface.

Press ⌘K or Ctrl+K to search the docs

index.js
package.json
// Query Hive Intelligence REST API
const response = await fetch(
"https://api.hiveintelligence.xyz/api/execute",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
toolName: "get_price",
arguments: { ids: "bitcoin,ethereum", vs_currencies: "usd" }
})
}
);
const data = await response.json();

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?

ChallengeTraditional APIsHive Intelligence
Chain accessMultiple integrationsSingle interface
Data formatInconsistentAI-optimized JSON
Tool discoveryManual documentationAuto-discovery
Setup timeHours5 minutes

CategoryToolsExample
Market Data58get_price, get_trending
DEX Analytics56get_trending_pools, get_pool_info
DeFi23get_protocols, get_yield_pools
Security19get_token_security, check_malicious_address
NFT30get_nft, get_nft_market_chart

View All Tools →


Next Steps