Tools Catalog

Security and Risk Tools for AI Agents

This scoped endpoint exposes the current Security & Risk Analysis tool set.

Category Endpoint: POST /hive_security_risk/mcp

Providers represented here: GoPlus, DeFiLlama, Tenderly, Moralis


Scope

This page documents the tools exposed by the category-scoped MCP endpoint above.

  • tools/list on this category endpoint returns the current scoped tool set directly.
  • The full Hive server also exposes the complete wrapped provider catalog through root invoke_api_endpoint, category endpoints, and the REST catalog.
  • For the complete wrapped provider catalog, including tools outside this category page, see Live Catalog.

Included Tools

ToolProviderSummary
get_token_securityGoPlusGet comprehensive token security analysis including: honeypot detection, ownership details, trading tax, slippage, holder distribution, liquidity status, contract verification, and other security metrics
get_nft_securityGoPlusGet NFT security and authenticity analysis including: malicious behavior detection, trading platform verification, metadata authenticity, contract risks (privileged_burn, transfer_without_approval, self_destruct), and...
check_malicious_addressGoPlusCheck if an address is malicious or associated with: scams, phishing, exploits, mixers, sanctioned entities, or other malicious activities
check_approval_securityGoPlusCheck security risks of token/NFT approval contracts including: contract verification status, malicious history, approval abuse potential, and whether the spender is a known phishing address or malicious contract.
get_wallet_approvalsGoPlusGet comprehensive security analysis of all token and NFT approvals for a user address, showing which contracts have spending permissions
check_dapp_securityGoPlusCheck security risks of a dApp by URL including: phishing detection, malicious contract interactions, audit status, and trust score
check_phishing_siteGoPlusDetect if a URL is a phishing site by checking against comprehensive phishing databases
decode_abiGoPlusDecode ABI data to understand smart contract interactions, function calls, and parameters
defillama_get_hacksDeFiLlamaGet comprehensive list of DeFi hacks, exploits, and security incidents with details on amounts lost, affected protocols, and attack vectors.
simulate_evm_transactionGoPlusSimulate an EVM transaction to detect security risks before signing
simulate_solana_transactionGoPlusSimulate a Solana transaction to detect security risks before signing
detect_rugpullGoPlusDetect potential rug-pull schemes for a token contract
get_token_lock_infoGoPlusRetrieve token and LP lock information including lock amounts, unlock dates, lock platforms, and lock percentages
get_solana_token_securityGoPlusAnalyze Solana SPL token security risks including mint authority, freeze authority, supply analysis, and known risk indicators
get_sui_token_securityGoPlusAnalyze Sui token security risks including module authority, supply controls, and known risk indicators.
check_approval_security_v2GoPlusEnhanced approval security analysis (v2) with support for ERC-20, ERC-721, and ERC-1155 tokens
tenderly_simulate_transactionTenderlySimulate an EVM transaction without sending it on-chain using Tenderly
tenderly_simulate_bundleTenderlySimulate a bundle of sequential EVM transactions using Tenderly
tenderly_estimate_gasTenderlyEstimate gas cost for an EVM transaction using Tenderly simulation
tenderly_get_supported_networksTenderlyRetrieve get supported networks data through Hive Intelligence.
tenderly_decode_calldataTenderlyDecode and analyze EVM transaction calldata by running a simulation with ABI decoding
tenderly_trace_transactionTenderlyGet a decoded trace for any on-chain transaction by hash using Tenderly
tenderly_gas_priceTenderlyGet real-time gas price predictions with low/medium/high confidence levels using Tenderly Gateway RPC
tenderly_suggest_gas_feeTenderlyGet EIP-1559 gas fee suggestions (baseFee, maxPriorityFee, maxFeePerGas) at multiple speed tiers using Tenderly Gateway RPC
tenderly_decode_inputTenderlyDecode raw EVM transaction calldata into human-readable function name and parameters using Tenderly Gateway RPC
tenderly_decode_errorTenderlyDecode EVM revert/error data into human-readable error name and parameters using Tenderly Gateway RPC
tenderly_get_contract_abiTenderlyGet the ABI (Application Binary Interface) for any verified smart contract using Tenderly Gateway RPC
tenderly_decode_eventTenderlyDecode raw EVM event log data into human-readable event name and parameters using Tenderly Gateway RPC
tenderly_get_storage_changesTenderlyGet storage slot change history for a smart contract using Tenderly Gateway RPC
tenderly_get_transactions_rangeTenderlyGet transactions between two addresses within a block range using Tenderly Gateway RPC
tenderly_function_signaturesTenderlyLook up function signatures by their 4-byte selector using Tenderly Gateway RPC
tenderly_error_signaturesTenderlyLook up custom error signatures by their 4-byte selector using Tenderly Gateway RPC
tenderly_event_signatureTenderlyLook up an event signature by its 32-byte topic hash using Tenderly Gateway RPC
tenderly_share_simulationTenderlyShare a Tenderly simulation publicly by generating a shareable link
tenderly_get_block_numberTenderlyGet the latest block number for an EVM network using Tenderly's public API

Response Examples

get_token_security

Request:

{"tool": "get_token_security", "args": {"chainId": "1", "contract_addresses": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"}}

Response:

{
  "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": {
    "is_honeypot": "0",
    "is_open_source": "1",
    "is_proxy": "1",
    "is_mintable": "0",
    "buy_tax": "0",
    "sell_tax": "0",
    "holder_count": "450000",
    "is_blacklisted": "0",
    "is_whitelisted": "0"
  }
}

Discovery

Use these discovery surfaces when you need the current live catalog:

  • GET https://mcp.hiveintelligence.xyz/api/v1/tools
  • resources/read hive://tools
  • get_api_endpoint_schema on the root /mcp endpoint