helius_get_token_account_balance
Retrieve the balance of a token account on the Solana blockchain by specifying the token address and commitment level using the MCP Helius server.
Instructions
Get the balance of a token account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commitment | No | ||
tokenAddress | Yes |
Input Schema (JSON Schema)
{
"properties": {
"commitment": {
"enum": [
"confirmed",
"finalized",
"processed"
],
"type": "string"
},
"tokenAddress": {
"type": "string"
}
},
"required": [
"tokenAddress"
],
"type": "object"
}