One API key. Every crypto data source. Every AI agent.

Market data, DeFi, wallets, security from 9 providers - unified through MCP, REST API, and CLI.

index.js
package.json
const response = await fetch(
"https://mcp.hiveintelligence.xyz/api/v1/execute",
{
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": process.env.HIVE_API_KEY,
},
body: JSON.stringify({
tool: "get_price",
args: { ids: "bitcoin,ethereum" }
})
}
);

Works with major AI platforms

Claude AICursor IDEChatGPTGoogle GeminiLangChain

As featured in

BenzingaBusiness InsiderDecryptThe StreetInvesting.comThe DefiantBinanceFinboldDeFiLlama NewsThe Fintech MagFinsmesCrypto Briefing

Building a crypto AI agent means integrating CoinGecko for prices, DeFiLlama for DeFi analytics, GoPlus for security checks, Moralis and GoldRush for wallet data, CCXT for exchanges, Codex for DEX and prediction markets, Finnhub for equities, and Tenderly for simulations. That is nine providers, nine APIs, nine auth flows, nine schemas to learn.

Hive replaces that patchwork with one connection.

Quick Start

Connect Claude, Cursor, or your own agent to Hive in a few minutes.

Get API Keys

Create an API key and start calling tools immediately.

API Integration

Add crypto data to any backend with standard HTTP requests.

CLI Reference

Test and automate crypto data queries from the terminal.

What You Get

One API key. One schema. One auth flow. Everything your AI agent needs to work with crypto and financial data:

  • Hundreds of tools from 9 providers across 14 categories
  • MCP endpoints for Claude, Cursor, ChatGPT, Gemini, and LangChain
  • REST API for any backend or scripted workflow
  • CLI for terminal access and local automation
  • Dashboard to manage keys, track usage, and control access

Your agent discovers tools at runtime. No stale documentation. No provider-by-provider integration.


Common Workflows

Check prices and market conditions

Your agent needs to monitor Bitcoin, scan the latest market movers, and check global crypto sentiment - all in one conversation.

  • get_price
  • get_coins_market_data
  • get_global_stats

Analyze DeFi yields and protocol health

Compare yields across protocols, verify TVL, and check fee generation before surfacing an opportunity.

  • get_defi_protocol
  • get_protocol_tvl
  • get_trending_pools
  • get_pool_info

Audit wallets and verify token safety

Build portfolio views, check wallet activity, and run security checks before your user signs a transaction.

  • goldrush_get_multichain_balances
  • moralis_get_wallet_net_worth
  • get_token_security
  • detect_rugpull

Track prediction markets

Discover markets, monitor price movements, and aggregate trade flow for reporting or agent ranking.

  • codex_prediction_market_stats
  • codex_prediction_event_stats
  • codex_prediction_trades

Discovery

curl -X GET "https://mcp.hiveintelligence.xyz/api/v1/tools?limit=20" \
  -H "x-api-key: YOUR_HIVE_API_KEY"

From MCP clients, also use:

  • hive://tools
  • hive://categories
  • hive://providers

Next Steps