bitquery_token_holders

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

Top holders of a token — largest current balances for an ERC-20 token contract on an EVM chain (Bitquery Holders cube). Returns holder address and balance. Optionally scope to a snapshot date. Example: bitquery_token_holders({ token: “0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48”, network: “eth”, limit: 20, _apiKey: “your-bitquery-token” })

Parameters

NameTypeRequiredDescription
tokenstringyesERC-20 token contract address. Required.
networkstringnoEVM network enum (default “eth”). See bitquery_dex_trades for options.
datestringnoOptional snapshot date “YYYY-MM-DD” — filters to balances last changed on/before this date. Omit for the latest snapshot.
limitintegernoMax holders to return (default 20, max 50).
_apiKeystringyesBitquery OAuth access token (Bearer). Generate at bitquery.io (free Developer tier).

Example call

Arguments

{
  "token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
  "network": "eth",
  "limit": 20,
  "_apiKey": "your-bitquery-token"
}

curl

curl -X POST https://gateway.pipeworx.io/bitquery/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bitquery_token_holders","arguments":{"token":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","network":"eth","limit":20,"_apiKey":"your-bitquery-token"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('bitquery_token_holders', {
  "token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
  "network": "eth",
  "limit": 20,
  "_apiKey": "your-bitquery-token"
});

More examples

{
  "token": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
  "network": "eth",
  "date": "2024-01-15",
  "_apiKey": "your-bitquery-token"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 22, 2026