Tools Catalog

Live Catalog

Written by , Product docsLast updated

Hive's release-candidate source contains 537 callable tools: 519 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 discovery compact; inspect the schema, choose the correctly annotated invoker, or use category/REST execution. Live discovery confirms deployed availability.

Use this page to understand the release-candidate shape. For the current production version, exact names, schemas, operations, 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. Its result declares the operation and call pattern: reads use invoke_api_endpoint; explicitly approved Hive-native writes use invoke_stateful_endpoint.


Category inventory

CategoryEndpointCurrent toolsPrimary use
Market Data & Price/hive_market_data/mcp106Prices, OHLC, market caps, exchange data, derivatives
On-Chain DEX & Pool Analytics/hive_onchain_dex/mcp64Pools, pairs, liquidity, trades, DEX flow
Portfolio & Wallet/hive_portfolio_wallet/mcp77Wallet balances, history, PnL, NFTs, DeFi positions
Token & Contract Data/hive_token_contract/mcp50Token metadata, holders, top traders, contract context
DeFi Protocol Analytics/hive_defi_protocol/mcp18TVL, fees, revenue, stablecoins, bridges, yields
NFT Analytics/hive_nft_analytics/mcp67Collections, floors, holders, sales, traits, Solana assets
Security & Risk Analysis/hive_security_risk/mcp51Token, NFT, dApp, address, approval, and simulation risk
Network & Infrastructure/hive_network_infrastructure/mcp40Gas, blocks, receipts, logs, network status, Solana RPC
Search & Discovery/hive_search_discovery/mcp25Cross-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 release-candidate root /mcp endpoint exposes these five workflow tools to keep general-purpose agents focused:

  • search_tools
  • get_api_endpoint_schema
  • invoke_api_endpoint
  • invoke_stateful_endpoint
  • validate_task_result

search_tools, schema lookup, and task-result validation do not consume execution credits. The two invokers are the material execution boundary. Category inventories remain available through resources and the ten scoped MCP endpoints, so broad coverage does not consume root model context.

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; the default compact result is bounded and paginated.
  2. Read hive://toolsets/{id} for the exact workflow, execution budget, fallback, stop conditions, and output schema.
  3. Call get_api_endpoint_schema for the selected exact tool.
  4. Follow its declared operation: use invoke_api_endpoint for reads or invoke_stateful_endpoint for an explicitly approved Hive state change. REST /api/v1/execute remains available for backend-owned execution.
  5. Call validate_task_result on the final task envelope when supported. This checks structure; it does not make invented receipts authentic.
  6. Report provider-native evidence time when available, Hive retrieval/cache timing, runtime status, receipt ID/version, 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