vaultix_get_balance
Retrieve current account balance details including available and pending amounts for payment management.
Instructions
Get current account balance (available and pending)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/index.ts:498-499 (handler)Handler implementation for the vaultix_get_balance tool. It retrieves the current account balance by calling client.get('/balance').case 'vaultix_get_balance': return client.get('/balance')
- src/tools/index.ts:168-175 (registration)Registration of the vaultix_get_balance tool in the tools array, including name, description, and empty input schema (no parameters required).{ name: 'vaultix_get_balance', description: 'Get current account balance (available and pending)', inputSchema: { type: 'object', properties: {}, }, },
- src/tools/index.ts:171-174 (schema)Input schema for vaultix_get_balance: an empty object (no input parameters).inputSchema: { type: 'object', properties: {}, },