Tools Catalog

Live Catalog

Written by , Product docsLast updated

Hive currently exposes 369 callable tools: 351 wrapped provider tools across 10 category-scoped MCP endpoints plus 18 Hive-native stateful monitoring, memory, alert, report, and B2B subject tools. The root /mcp endpoint keeps tools/list compact at 13 discovery and execution-routing tools; exact tools are called through invoke_api_endpoint, category endpoints, or REST /api/v1/execute.

Use this page when you need the current production shape. For exact names, schemas, required parameters, and pagination cursors, use the live discovery surfaces below instead of copying a cached static table.


Discovery examples

Search by the task your agent is trying to complete, not only by a guessed endpoint name.

bash
curl -X GET "https://mcp.hiveintelligence.xyz/api/v1/tools?search=wallet%20risk&limit=5&fields=name,title,description,inputSchema" \
  -H "Authorization: Bearer YOUR_HIVE_API_KEY"

Useful first searches:

User intentSearch queryWhat to inspect next
"Should this token pass a pre-swap risk check?"token securityget_token_security, detect_rugpull, schema-required chain fields
"What is this wallet holding?"wallet balancewallet address format, network support, NFT inclusion
"Find high-yield DeFi pools"yield tvl poolslimit, chain filters, TVL/yield fields
"Track Polymarket movement"prediction market eventevent IDs, market IDs, trader and trade tools
"Explain recent DEX activity"pool trades liquiditypair/pool identifiers and time-window parameters
"Check network congestion"gas priority feeEVM gas or Solana priority-fee tools

After search, call get_api_endpoint_schema before execution. That is the main difference between Hive as an agent workflow surface and a static endpoint catalog.


Authoritative discovery surfaces

REST catalog

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

Useful query parameters:

ParameterUse
limitPage size
cursorPagination cursor returned by the previous page
searchSearch names and descriptions
sort=nameStable name ordering
order=asc or order=descSort direction
fieldsRestrict returned fields

MCP resources

Read these from the root /mcp endpoint:

  • hive://tools -- full live tool inventory
  • hive://categories -- category namespaces and endpoint paths
  • hive://providers -- active provider integrations
  • hive://toolsets -- task-oriented routing maps
  • hive://task-canaries -- representative calls for coverage checks
  • hive://skills -- skill pack metadata
  • hive://status -- runtime status semantics

Schema lookup

Use get_api_endpoint_schema on the root /mcp endpoint before invoking any exact tool. Then call the tool through invoke_api_endpoint.


Category inventory

CategoryEndpointCurrent toolsPrimary use
Market Data & Price/hive_market_data/mcp87Prices, OHLC, market caps, exchange data, derivatives
On-Chain DEX & Pool Analytics/hive_onchain_dex/mcp52Pools, pairs, liquidity, trades, DEX flow
Portfolio & Wallet/hive_portfolio_wallet/mcp40Wallet balances, history, PnL, NFTs, DeFi positions
Token & Contract Data/hive_token_contract/mcp34Token metadata, holders, top traders, contract context
DeFi Protocol Analytics/hive_defi_protocol/mcp17TVL, fees, revenue, stablecoins, bridges, yields
NFT Analytics/hive_nft_analytics/mcp30Collections, floors, holders, sales, traits, Solana assets
Security & Risk Analysis/hive_security_risk/mcp29Token, NFT, dApp, address, approval, and simulation risk
Network & Infrastructure/hive_network_infrastructure/mcp26Gas, blocks, receipts, logs, network status, Solana RPC
Search & Discovery/hive_search_discovery/mcp15Cross-provider search and entity discovery
Prediction Markets/hive_prediction_markets/mcp21Polymarket markets, events, prices, traders, holders, trades

Hive-native stateful tools

The 18 Hive-native tools are not part of a provider category count. They add persistence and partner-scoped state on top of the provider catalog:

  • Monitors: hive_create_monitor, hive_list_monitors, hive_get_monitor, hive_update_monitor, hive_archive_monitor, hive_get_monitor_runs
  • Observations and alerts: hive_list_observations, hive_list_alerts, hive_update_alert_status, hive_get_latest_snapshot
  • Memory and reports: hive_remember_fact, hive_list_memory_facts, hive_forget_memory_fact, hive_generate_monitor_report
  • B2B subjects: hive_list_subjects, hive_get_subject, hive_archive_subject, hive_list_subject_audit_events

Root discovery tools

The root /mcp endpoint exposes these 13 tools to keep general-purpose agents focused:

  • search_tools
  • get_api_endpoint_schema
  • invoke_api_endpoint
  • get_market_and_price_endpoints
  • get_on_chain_dex_and_pool_endpoints
  • get_portfolio_and_wallet_endpoints
  • get_token_and_contract_endpoints
  • get_defi_protocol_endpoints
  • get_nft_analytics_endpoints
  • get_security_and_risk_endpoints
  • get_network_and_infrastructure_endpoints
  • get_search_and_discovery_endpoints
  • get_prediction_market_endpoints

Agents should start at root unless they are intentionally constrained to one category. Focused agents can connect directly to one or more category endpoints.


  1. Call search_tools with the user's natural-language task.
  2. Read hive://toolsets if the task is ambiguous or multi-step.
  3. Call get_api_endpoint_schema for the selected exact tool.
  4. Call invoke_api_endpoint with schema-valid arguments, or call the same tool through REST /api/v1/execute.
  5. Report source, freshness, runtime status, and any non-ok provider state.

Example agent routing:

TaskPreferWhy
General crypto research questionRoot MCP plus search_toolsKeeps the agent flexible across categories
Token pre-trade diligencehive://toolsets plus security and DEX schemasPrevents a price-only answer when risk checks are needed
Production trading bot backendREST catalog plus explicit schema lookupKeeps execution deterministic in server code
Focused wallet assistantPortfolio category endpointSmaller direct tool surface reduces tool-choice noise
Dashboard or B2B appTypeScript adapter or REST with subject isolationKeeps keys server-side and supports app-level routing