Moralis

live CryptoData

Multichain wallet token balances, net worth, token holders, and decoded transaction history. BYO key.

4 tools
0ms auth
free tier 50 calls/day

Tools

moralis_wallet_tokens

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: "0xcB1C1FdE09f811B294172

No parameters required.

Try it
moralis_wallet_net_worth

Total portfolio net worth for wallet X — returns the aggregate USD value of a wallet with a per-chain breakdown. Example: moralis_wallet_net_worth({ address: "0xcB1C1FdE09f811B294172696404e88E65865990

No parameters required.

Try it
moralis_token_holders

Top holders of token X — returns the largest holders of an ERC20 token with balances and ownership percentages. Example: moralis_token_holders({ address: "0xdAC17F958D2ee523a2206206994597C13D831ec7",

No parameters required.

Try it
moralis_wallet_history

Recent decoded transactions for wallet X — returns a human-readable, decoded transaction history (sends, receives, swaps, NFT trades) for a wallet. Example: moralis_wallet_history({ address: "0xcB1C1F

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/moralis/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/moralis/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"moralis_wallet_tokens","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("moralis_wallet_tokens", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("multichain wallet token balances, net worth, token holders, and decoded transaction history");