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