get-soon-testnet-balance
Retrieve the testnet balance of a specified SOON address using SVM-MCP. Input the address to view current token holdings on the Soon testnet.
Instructions
Get the balance of a address on the Soon testnet
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| address | Yes | The SOON address to get the balance of | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "address": {
      "description": "The SOON address to get the balance of",
      "type": "string"
    }
  },
  "required": [
    "address"
  ],
  "type": "object"
}