Tools Catalog

Tools Reference

401+ live tools across 10 categories. Every tool, every plan — including free. Hive Intelligence's tools reference is the complete catalog of MCP tools available through the Hive crypto data server, spanning market data, DeFi analytics, wallets, security, and on-chain infrastructure.

Start free with 10K credits → — every tool below is callable on the Demo plan.

  • The majority of tools are grouped into 10 category-scoped MCP endpoints
  • Additional root-only tools are live in the wrapped server catalog and documented on Live Catalog
  • Canonical runtime count: GET /api/v1/tools

Two Catalog Views

Category-scoped MCP endpoints

Use these when you want a smaller tools/list result and a tighter prompt surface.

Full live catalog

Use the root server, hive://tools, or GET /api/v1/tools when you need the complete wrapped tool surface.

The root /mcp endpoint is optimized for LLM workflows. Its tools/list surface is a compact discovery layer, while the full live tool inventory is exposed through hive://tools, direct tool calls, and the REST catalog.


How To Discover Tools

REST catalog

curl -X GET "https://mcp.hiveintelligence.xyz/api/v1/tools?limit=50" \
  -H "Authorization: Bearer YOUR_HIVE_API_KEY"

Root MCP resources

  • Read hive://tools for the full live catalog
  • Read hive://categories for the 10 scoped endpoints
  • Read hive://providers for provider availability

Schema discovery

Use get_api_endpoint_schema on the root /mcp endpoint when you need parameters for a specific tool.


Category Endpoints

CategoryScoped toolsEndpoint
Market Data76/hive_market_data/mcp
DEX Analytics71/hive_onchain_dex/mcp
Portfolio & Wallet60/hive_portfolio_wallet/mcp
Token & Contract47/hive_token_contract/mcp
DeFi Protocols23/hive_defi_protocol/mcp
NFT Analytics47/hive_nft_analytics/mcp
Security & Risk40/hive_security_risk/mcp
Network & Infrastructure26/hive_network_infrastructure/mcp
Search & Discovery10/hive_search_discovery/mcp
Prediction Markets19/hive_prediction_markets/mcp

Request Formats

MCP tool call

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "get_price",
    "arguments": {
      "ids": "bitcoin",
      "vs_currencies": "usd"
    }
  },
  "id": 1
}

REST execution

curl -X POST https://mcp.hiveintelligence.xyz/api/v1/execute \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_HIVE_API_KEY" \
  -d '{
    "tool": "get_price",
    "args": {
      "ids": "bitcoin",
      "vs_currencies": "usd"
    }
  }'