Tools Catalog

Tools Reference

Written by , Product docsLast updated

375 callable tools: 357 provider tools across 10 categories plus 18 Hive-native stateful tools. Hive Intelligence's tools reference covers the MCP and REST tools available through the Hive crypto data server, spanning market data, DeFi analytics, wallets, security, on-chain infrastructure, monitoring, alerts, memory, and reports.

Get a Hive API key →, then use discovery to inspect the current callable catalog.

  • Provider tools are grouped into 10 category-scoped MCP endpoints
  • Hive-native stateful tools are available through root discovery and REST
  • The root /mcp endpoint exposes a compact discovery layer that routes into the wrapped catalog through invoke_api_endpoint
  • Canonical runtime count: authenticated REST GET /api/v1/tools; public overview: Live Catalog

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 hive://tools or GET /api/v1/tools when you need the complete callable tool surface.

The root /mcp endpoint is designed for agent discovery workflows. Its tools/list surface is a compact discovery layer, while the full live tool inventory is exposed through hive://tools, invoke_api_endpoint, category endpoints, and the REST catalog.


How to discover tools

REST catalog

bash
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
  • Read hive://toolsets, hive://skills, and hive://status for task routing, agent skill metadata, and runtime status semantics

Schema discovery

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


Category endpoints

CategoryEndpoint
Market Data/hive_market_data/mcp
DEX Analytics/hive_onchain_dex/mcp
Portfolio & Wallet/hive_portfolio_wallet/mcp
Token & Contract/hive_token_contract/mcp
DeFi Protocols/hive_defi_protocol/mcp
NFT Analytics/hive_nft_analytics/mcp
Security & Risk/hive_security_risk/mcp
Network & Infrastructure/hive_network_infrastructure/mcp
Search & Discovery/hive_search_discovery/mcp
Prediction Markets/hive_prediction_markets/mcp

Request formats

Root MCP tool call

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

REST execution

bash
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"
    }
  }'