Crypto MCP Server

A Crypto MCP Server is a Model Context Protocol endpoint that connects AI agents to real-time blockchain and financial data. Hive Intelligence operates a managed crypto MCP server covering market data, DeFi analytics, wallets, security, and more from 9 providers across 14 category-scoped endpoints.


Current MCP Shape

  • Root MCP endpoint: POST https://mcp.hiveintelligence.xyz/mcp
  • 14 category-scoped MCP endpoints
  • Hundreds of categorized tools on those category endpoints
  • Hundreds of live direct tools in the full wrapped catalog

Root vs Category Endpoints

Root /mcp

Use the root endpoint when your client needs discovery, schema lookup, and access to the broader live catalog.

Category-scoped endpoints

Use category endpoints when you want a smaller direct tools/list surface such as Market Data, Security, Portfolio, or Prediction Markets.


Discovery Resources

Read these from the root endpoint:

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

Use get_api_endpoint_schema for exact parameter discovery.


Example MCP Call

curl -X POST https://mcp.hiveintelligence.xyz/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "x-api-key: YOUR_HIVE_API_KEY" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "get_price",
      "arguments": {
        "ids": "bitcoin",
        "vs_currencies": "usd"
      }
    },
    "id": 1
  }'