Tools Catalog

Portfolio & Wallet Tools

49 categorized tools are available on this scoped endpoint.

Category Endpoint: POST /hive_portfolio_wallet/mcp

Providers represented here: Codex, GoldRush, Moralis


Scope

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

  • tools/list on this category endpoint returns these 49 tools directly.
  • The full Hive server also exposes hundreds of live direct tools through the root server and the REST catalog.
  • For root-only direct tools that are not part of category-scoped tools/list, 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
goldrush_get_token_balancesGoldRushGet all token balances (ERC-20, ERC-721, ERC-1155) for a wallet on a specific chain using GoldRush (Covalent)
goldrush_get_historical_balancesGoldRushGet historical token balances at a specific block height or date using GoldRush (Covalent)
goldrush_get_native_balanceGoldRushGet native token balance (ETH, MATIC, BNB, AVAX, etc.) for a wallet using GoldRush (Covalent)
goldrush_get_erc20_transfersGoldRushGet ERC-20 token transfer history for a wallet using GoldRush (Covalent)
goldrush_get_portfolio_historyGoldRushGet historical portfolio value over time for a wallet using GoldRush (Covalent)
goldrush_get_multichain_balancesGoldRushGet token balances across all chains for a wallet using GoldRush (Covalent)
goldrush_get_multichain_transactionsGoldRushGet recent transactions across all chains for a wallet using GoldRush (Covalent)
goldrush_get_cross_chain_activityGoldRushGet cross-chain activity summary for a wallet using GoldRush (Covalent)
goldrush_get_bitcoin_balanceGoldRushGet BTC balance for a Bitcoin address using GoldRush (Covalent)
goldrush_get_bitcoin_hd_balancesGoldRushGet HD (Hierarchical Deterministic) wallet balances for a Bitcoin address using GoldRush (Covalent)
goldrush_get_bitcoin_balance_historyGoldRushGet historical BTC balance over time for a Bitcoin address using GoldRush (Covalent)
goldrush_get_bitcoin_transactionsGoldRushGet Bitcoin transaction history for a BTC address using GoldRush (Covalent)
goldrush_get_transactionGoldRushGet detailed transaction data by hash using GoldRush (Covalent)
goldrush_get_transaction_summaryGoldRushGet transaction count summary for a wallet on a specific chain using GoldRush (Covalent)
goldrush_get_transactions_earliestGoldRushGet the earliest transactions for a wallet on a specific chain using GoldRush (Covalent)
goldrush_get_transactions_latestGoldRushGet the most recent transactions for a wallet on a specific chain using GoldRush (Covalent)
goldrush_get_transactions_paginatedGoldRushGet paginated transaction history for a wallet on a specific chain using GoldRush (Covalent)
goldrush_get_transactions_time_bucketsGoldRushGet transaction activity grouped into time buckets for a wallet using GoldRush (Covalent)
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