solana_token_holders
Pack: solana-rpc · Endpoint: https://gateway.pipeworx.io/solana-rpc/mcp
Top holders of a Solana SPL token by mint address: the largest token accounts ranked by balance, each
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
mint | string | yes | Base58 SPL token mint address (e.g. USDC EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v) |
limit | number | no | Holders to return, 1-100 (default 20; the RPC caps what it serves) |
Example call
Arguments
{
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"limit": 20
}
curl
curl -X POST https://gateway.pipeworx.io/solana-rpc/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"solana_token_holders","arguments":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('solana_token_holders', {
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"limit": 20
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"solana-rpc": {
"url": "https://gateway.pipeworx.io/solana-rpc/mcp"
}
}
}
See Getting Started for client-specific install steps.