Hive Intelligence

MCP Features

Beyond tools, the Hive MCP server exposes resources, prompts, and completions — enabling richer AI agent interactions.


Resources

Resources provide lightweight discovery without calling tools. Access them via resources/list and resources/read.

hive://providers

Returns all data providers and their current availability.

{
  "jsonrpc": "2.0",
  "method": "resources/read",
  "params": { "uri": "hive://providers" },
  "id": 1
}

Response includes:

  • Provider name and status (available/unavailable)
  • Whether an API key is configured
  • Data categories each provider covers

hive://categories

Returns all 14 tool categories with route paths and tool counts.

Response includes:

  • Category name and index
  • MCP endpoint path (e.g., /hive_market_data/mcp)
  • Number of tools in each category
  • Category description

hive://tools

Lightweight catalog of all visible tools for the current MCP endpoint.

Response includes:

  • Tool name and title
  • Category assignment
  • Provider attribution
  • Summarized description

Prompts

Curated workflow templates that guide AI agents through multi-step analysis. Access via prompts/list and prompts/get.

analyze_token

Deep analysis of a token using market, security, on-chain, holder, and social data.

ParameterRequiredDescription
tokenYesToken name, symbol, or contract address
chainNoBlockchain network (ethereum, solana, base)

Workflow steps:

  1. Get market price and metadata
  2. Run security analysis (honeypot, rugpull checks)
  3. Fetch on-chain holder distribution
  4. Check social sentiment metrics
  5. Synthesize findings into a comprehensive report

compare_protocols

Compare DeFi protocols using TVL, fees, yields, and chain distribution.

ParameterRequiredDescription
protocolsYesComma-separated protocol names

Workflow steps:

  1. Fetch TVL data for each protocol
  2. Compare fee structures and revenue
  3. Analyze yield opportunities
  4. Compare chain distribution
  5. Present side-by-side comparison

portfolio_audit

Audit a wallet using balance, position, approval, and transaction tools.

ParameterRequiredDescription
addressYesWallet address to audit

Workflow steps:

  1. Fetch token balances across chains
  2. Identify DeFi positions and exposure
  3. Audit token approvals for risks
  4. Review recent transaction history
  5. Generate security recommendations

Tool Annotations

Every tool includes MCP annotations that help AI agents make informed decisions:

AnnotationDescription
titleHuman-readable tool name
readOnlyHintWhether the tool only reads data (all Hive tools are read-only)
idempotentHintWhether results change over time (false for live prices, true for historical data)
openWorldHintWhether the tool accesses external services

Completions

The server supports argument completion for tools, helping AI agents discover valid parameter values.

{
  "jsonrpc": "2.0",
  "method": "completion/complete",
  "params": {
    "ref": { "type": "ref/tool", "name": "get_price" },
    "argument": { "name": "ids", "value": "bit" }
  },
  "id": 1
}

Server Capabilities

The Hive MCP server declares these capabilities:

{
  "tools": { "listChanged": true },
  "resources": { "listChanged": true },
  "prompts": { "listChanged": true },
  "completions": {}
}
  • listChanged: true — tool/resource/prompt lists can change dynamically
  • completions — argument completion is supported