Hive Intelligence

Technical

Use Cases

Hive is most useful when you combine category discovery with a small set of high-signal tools for one workflow.


Market Intelligence Agents

Use Hive to power research bots, alerting systems, and execution assistants.

Common tools

  • get_price
  • get_coins_market_data
  • get_gainers_losers
  • get_ticker
  • get_open_interest

Typical flow

  1. Pull spot pricing and market-cap context with get_price and get_coins_market_data
  2. Add exchange-level order flow or derivatives context with get_ticker and get_open_interest
  3. Flag outliers with get_gainers_losers

DeFi Strategy Monitoring

Track yields, protocol health, and fee generation across chains.

Common tools

  • get_yield_pools
  • get_protocol_tvl
  • get_protocol_fee_summary
  • get_chain_fees
  • defillama_get_treasury

Typical flow

  1. Filter attractive pools with get_yield_pools
  2. Validate protocol scale with get_protocol_tvl
  3. Compare fee capture and treasury strength before surfacing an opportunity

Wallet Intelligence

Build portfolio dashboards, agent memory, or account-monitoring products.

Common tools

  • get_wallet_balances
  • moralis_get_wallet_net_worth
  • moralis_get_wallet_defi_positions
  • goldrush_get_multichain_transactions
  • moralis_get_wallet_nfts

Typical flow

  1. Start with balances and net worth
  2. Add DeFi positions and transaction history
  3. Enrich with NFT ownership or chain activity for a complete wallet profile

Security Review

Use Hive as a pre-trade or pre-signing defense layer.

Common tools

  • get_token_security
  • check_dapp_security
  • check_phishing_site
  • simulate_evm_transaction
  • tenderly_trace_transaction

Typical flow

  1. Check token or dApp risk
  2. Simulate the transaction before prompting the user to sign
  3. Trace suspicious activity if you need deeper inspection

Prediction Market Analytics

The live catalog includes a dedicated prediction-market category powered by Codex.

Common tools

  • codex_prediction_markets
  • codex_prediction_market_price
  • codex_prediction_trades
  • codex_prediction_event_stats

Typical flow

  1. Discover markets for a category or network
  2. Track market price changes and trade flow
  3. Aggregate event-level statistics for reporting or agent ranking logic

Minimal REST Wrapper

import requests

def execute(tool: str, args: dict) -> dict:
    response = requests.post(
        "https://mcp.hiveintelligence.xyz/api/v1/execute",
        headers={"x-api-key": "YOUR_HIVE_API_KEY"},
        json={"tool": tool, "args": args},
        timeout=30,
    )
    response.raise_for_status()
    return response.json()

market = execute("get_price", {
    "ids": "bitcoin,ethereum",
    "vs_currencies": "usd",
})

Previous
Data Sources