solana_gettokenholders
Retrieve holder data for a specific token on Solana networks using the Moralis MCP Server. Input the token address and network to generate a summary of token holders.
Instructions
Get the summary of holders for a given token token.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to query | |
network | Yes | The network to query |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address to query",
"type": "string"
},
"network": {
"description": "The network to query",
"enum": [
"mainnet",
"devnet"
],
"type": "string"
}
},
"required": [
"network",
"address"
],
"type": "object"
}