Tools Catalog

Portfolio and Wallet Tools for AI Agents

This scoped endpoint exposes the current Portfolio & Wallet tool set.

Category Endpoint: POST /hive_portfolio_wallet/mcp

Providers represented here: Codex, Moralis, Helius


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_wallet_balancesCodexGet token balances for a wallet
get_wallet_token_eventsCodexGet a list of token events for a given wallet address
filter_walletsCodexSearch and filter blockchain wallets based on various criteria.
filter_token_walletsCodexFilter wallets that hold or trade a specific token.
get_wallet_statsCodexGet comprehensive statistics for a wallet.
get_wallet_chartCodexGenerate chart data for wallet.
get_wallet_nft_collectionsCodexGet NFT collections held by a specific wallet including collection metadata and holding quantities
get_wallet_nft_assetsCodexGet specific NFT assets held by a wallet from a particular collection including token metadata and ownership details
filter_network_walletsCodexFilter and rank wallets by realized profit, trading activity, or other metrics on Codex
moralis_get_wallet_historyMoralisGet complete decoded transaction history for a wallet using Moralis
moralis_get_wallet_token_balancesMoralisGet all ERC20 token balances for a wallet with real-time USD prices using Moralis
moralis_get_wallet_net_worthMoralisGet total USD net worth for a wallet across all supported chains using Moralis
moralis_get_wallet_profitabilityMoralisGet per-token profit and loss (PnL) for a wallet using Moralis
moralis_get_wallet_profitability_summaryMoralisGet aggregate profit/loss summary for a wallet using Moralis
moralis_get_wallet_defi_positionsMoralisGet all DeFi positions for a wallet across protocols using Moralis
moralis_get_wallet_defi_summaryMoralisGet DeFi summary for a wallet using Moralis
moralis_get_wallet_approvalsMoralisGet all ERC20 token approvals for a wallet using Moralis
moralis_get_wallet_swapsMoralisGet all swap transactions for a wallet using Moralis
moralis_get_wallet_active_chainsMoralisGet which chains a wallet has activity on using Moralis
moralis_get_wallet_statsMoralisGet summary statistics for a wallet using Moralis
moralis_get_wallet_nftsMoralisGet all NFTs owned by a wallet using Moralis
moralis_get_wallet_insightMoralisGet comprehensive wallet insight metrics with chain breakdown using Moralis
moralis_get_native_balanceMoralisGet native token balance (ETH, MATIC, BNB, etc.) for a wallet using Moralis
moralis_get_wallet_token_transfersMoralisGet all ERC20 token transfers for a specific wallet using Moralis
moralis_get_sol_balanceMoralisGet native SOL balance for a Solana wallet using Moralis
moralis_get_sol_token_balancesMoralisGet all SPL token balances for a Solana wallet using Moralis
moralis_get_sol_portfolioMoralisGet complete Solana portfolio for a wallet using Moralis
moralis_get_sol_swapsMoralisGet all swap transactions for a Solana wallet using Moralis
moralis_get_pumpfun_new_tokensMoralisGet newly created Pump.fun tokens on Solana using Moralis
moralis_get_pumpfun_bonding_tokensMoralisGet Pump.fun tokens currently in the bonding curve phase on Solana using Moralis
moralis_get_pumpfun_graduated_tokensMoralisGet Pump.fun tokens that have graduated from the bonding curve to Raydium on Solana using Moralis

Response Examples

moralis_get_wallet_net_worth

Request:

{"tool": "moralis_get_wallet_net_worth", "args": {"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"}}

Response:

{
  "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
  "total_networth_usd": 2500000,
  "chains": [
    {
      "chain": "eth",
      "native_balance_usd": 500000,
      "token_balances_usd": 1500000,
      "total_usd": 2000000
    }
  ]
}

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