solana_gettopholders
Retrieve paginated top holders for a specific token on Solana using the Moralis MCP Server. Query by network and token address to access detailed holder data.
Instructions
Get paginated top holders for a given token.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to query | |
cursor | No | The cursor to the next page | |
limit | No | The limit per page | |
network | Yes | The network to query |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address to query",
"type": "string"
},
"cursor": {
"description": "The cursor to the next page",
"type": "string"
},
"limit": {
"default": 100,
"description": "The limit per page",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"network": {
"description": "The network to query",
"enum": [
"mainnet",
"devnet"
],
"type": "string"
}
},
"required": [
"network",
"address"
],
"type": "object"
}