moralis_wallet_tokens

Pack: moralis · Endpoint: https://gateway.pipeworx.io/moralis/mcp

What tokens does wallet X hold + USD value — returns ERC20 token balances with live prices for a wallet address on a given EVM chain. Example: moralis_wallet_tokens({ address: “0xcB1C1FdE09f811B294172696404e88E658659905”, chain: “eth”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
addressstringyesWallet address (0x…) to inspect
chainstringnoEVM chain: eth (default), polygon, bsc, base, arbitrum, avalanche, optimism, …
_apiKeystringyesMoralis API key (get one free — 40k CU/day — at moralis.com)

Example call

Arguments

{
  "address": "0xcB1C1FdE09f811B294172696404e88E658659905",
  "chain": "eth",
  "_apiKey": "your-moralis-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/moralis/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"moralis_wallet_tokens","arguments":{"address":"0xcB1C1FdE09f811B294172696404e88E658659905","chain":"eth","_apiKey":"your-moralis-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('moralis_wallet_tokens', {
  "address": "0xcB1C1FdE09f811B294172696404e88E658659905",
  "chain": "eth",
  "_apiKey": "your-moralis-api-key"
});

More examples

{
  "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f42bA",
  "chain": "polygon",
  "_apiKey": "your-moralis-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "moralis": {
      "url": "https://gateway.pipeworx.io/moralis/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026