solana_getspl
Retrieve Solana token balances for a specific address using 'solana_getspl'. Specify the network and exclude spam tokens to filter results. Powered by the Moralis MCP Server.
Instructions
Gets token balances owned by the given address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to query | |
excludeSpam | No | Should exclude spam tokens | |
network | Yes | The network to query |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address to query",
"type": "string"
},
"excludeSpam": {
"default": false,
"description": "Should exclude spam tokens",
"type": "boolean"
},
"network": {
"description": "The network to query",
"enum": [
"mainnet",
"devnet"
],
"type": "string"
}
},
"required": [
"network",
"address"
],
"type": "object"
}