Tools Reference
Tools Reference
Hive currently exposes 512 live direct tools in hive-mcp2.
- 389 tools are grouped into 14 category-scoped MCP endpoints
- 123 additional tools are live in the wrapped server catalog and documented on 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 the root server, hive://tools, or GET /api/v1/tools when you need the complete wrapped tool surface.
The root
/mcpendpoint is optimized for LLM workflows. Itstools/listsurface is a compact discovery layer, while the full live tool inventory is exposed throughhive://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 "x-api-key: YOUR_HIVE_API_KEY"
Root MCP resources
- Read
hive://toolsfor the full live catalog - Read
hive://categoriesfor the 14 scoped endpoints - Read
hive://providersfor provider availability
Schema discovery
Use get_api_endpoint_schema on the root /mcp endpoint when you need parameters for a specific tool.
Category Endpoints
| Category | Scoped tools | Endpoint |
|---|---|---|
| Market Data | 70 | /hive_market_data/mcp |
| DEX Analytics | 58 | /hive_onchain_dex/mcp |
| Portfolio & Wallet | 49 | /hive_portfolio_wallet/mcp |
| Token & Contract | 44 | /hive_token_contract/mcp |
| DeFi Protocols | 21 | /hive_defi_protocol/mcp |
| NFT Analytics | 41 | /hive_nft_analytics/mcp |
| Security & Risk | 37 | /hive_security_risk/mcp |
| Network & Infrastructure | 20 | /hive_network_infrastructure/mcp |
| Search & Discovery | 10 | /hive_search_discovery/mcp |
| Stocks & Equities | 8 | /hive_stocks_equities/mcp |
| Forex & Commodities | 4 | /hive_forex_commodities/mcp |
| Economic Indicators | 3 | /hive_economic_indicators/mcp |
| Alternative Data | 5 | /hive_alternative_data/mcp |
| Prediction Markets | 19 | /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 "x-api-key: YOUR_HIVE_API_KEY" \
-d '{
"tool": "get_price",
"args": {
"ids": "bitcoin",
"vs_currencies": "usd"
}
}'