get_balances
Retrieve token balances for a Stellar wallet by providing the public key. Part of the Chronos MCP Server, enabling blockchain integration for AI assistants.
Instructions
Get balances for all tokens in a Stellar wallet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
publicKey | Yes | Stellar wallet public key |
Input Schema (JSON Schema)
{
"properties": {
"publicKey": {
"description": "Stellar wallet public key",
"type": "string"
}
},
"required": [
"publicKey"
],
"type": "object"
}