Hive Intelligence

Tools Reference

Search & Discovery Tools

Search & Discovery Tools

9 tools for token discovery, search, trending analysis, and category data.

MCP Endpoint: POST /hive_search_discovery/mcp

Data Source: CoinGecko


Search Tools

search_all

Search for coins, NFTs, exchanges, and categories.

ParameterTypeRequiredDescription
querystringYesSearch query (name, symbol, or address)

Example:

curl -X POST https://api.hiveintelligence.xyz/api/execute \
  -H "Content-Type: application/json" \
  -d '{
    "toolName": "search_all",
    "arguments": {
      "query": "bitcoin"
    }
  }'

Response includes:

  • Coins matching the query
  • NFT collections
  • Exchanges
  • Categories

Get trending coins, NFTs, and categories based on search activity.

ParameterTypeRequiredDescription
(none)--No parameters required

Example:

curl -X POST https://api.hiveintelligence.xyz/api/execute \
  -H "Content-Type: application/json" \
  -d '{
    "toolName": "get_trending",
    "arguments": {}
  }'

Response:

{
  "coins": [
    {
      "item": {
        "id": "bitcoin",
        "name": "Bitcoin",
        "symbol": "BTC",
        "market_cap_rank": 1,
        "score": 0
      }
    }
  ],
  "nfts": [...],
  "categories": [...]
}

get_new_coins

Get recently added coins to CoinGecko.

ParameterTypeRequiredDescription
(none)--No parameters required

Response includes:

  • Coin ID and name
  • Symbol
  • Listing date
  • Market cap rank

Category Tools

get_categories

Get list of all cryptocurrency categories.

ParameterTypeRequiredDescription
(none)--No parameters required

Categories include:

  • Layer 1
  • Layer 2
  • DeFi
  • NFT
  • Gaming
  • Meme
  • AI
  • RWA (Real World Assets)
  • Stablecoins

get_categories_market_data

Get categories with market data including market cap and volume.

ParameterTypeRequiredDescription
orderstringNoSort by: market_cap_desc, market_cap_asc, name_desc, name_asc, market_cap_change_24h_desc, market_cap_change_24h_asc

Example:

curl -X POST https://api.hiveintelligence.xyz/api/execute \
  -H "Content-Type: application/json" \
  -d '{
    "toolName": "get_categories_market_data",
    "arguments": {
      "order": "market_cap_desc"
    }
  }'

Response:

[
  {
    "id": "layer-1",
    "name": "Layer 1 (L1)",
    "market_cap": 2500000000000,
    "market_cap_change_24h": 2.5,
    "volume_24h": 85000000000,
    "top_3_coins": ["bitcoin", "ethereum", "solana"]
  }
]

Coin List Tools

get_coins_list

Get list of all supported coins with ID, symbol, and name.

ParameterTypeRequiredDescription
include_platformbooleanNoInclude platform contract addresses

Example:

curl -X POST https://api.hiveintelligence.xyz/api/execute \
  -H "Content-Type: application/json" \
  -d '{
    "toolName": "get_coins_list",
    "arguments": {
      "include_platform": true
    }
  }'

Exchange List Tools

get_exchanges_list

Get list of all supported exchanges.

ParameterTypeRequiredDescription
(none)--No parameters required

Response includes:

  • Exchange ID and name
  • Year established
  • Country
  • Trust score

get_derivatives_exchanges_list

Get list of all derivatives exchanges.

ParameterTypeRequiredDescription
(none)--No parameters required

Event Tools

get_event_labels

Get list of event labels for categorizing crypto events.

ParameterTypeRequiredDescription
(none)--No parameters required

Quick Reference

ToolDescription
search_allSearch coins, NFTs, exchanges
get_trendingTrending coins and NFTs
get_new_coinsRecently added coins
get_categoriesAll category names
get_categories_market_dataCategories with market data
get_coins_listAll supported coins
get_exchanges_listAll exchanges
get_derivatives_exchanges_listDerivatives exchanges
get_event_labelsEvent categorization labels
Previous
Network