moralis_token_holders

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

Top holders of token X — returns the largest holders of an ERC20 token with balances and ownership percentages. Example: moralis_token_holders({ address: “0xdAC17F958D2ee523a2206206994597C13D831ec7”, chain: “eth”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
addressstringyesERC20 token contract address (0x…)
chainstringnoEVM chain the token lives on (default eth)
_apiKeystringyesMoralis API key

Example call

Arguments

{
  "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
  "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_token_holders","arguments":{"address":"0xdAC17F958D2ee523a2206206994597C13D831ec7","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_token_holders', {
  "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
  "chain": "eth",
  "_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