getBalance
Check the SOL balance of a specific Solana account address using a simple RPC endpoint provided by the Solana MCP Server.
Instructions
Get balance for a Solana address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Solana account address |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "Solana account address",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}