t2000_balance
Retrieve an AI agent's current financial balance including checking, savings, credit, gas reserve, and net total in USD.
Instructions
Get agent's current balance — available (checking), savings, credit (debt), gas reserve, and net total. All values in USD. For a full account snapshot, prefer t2000_overview instead.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- packages/mcp/src/tools/read.ts:56-68 (handler)The handler for the 't2000_balance' tool, which retrieves the agent's current balance information using the agent.balance() method.
server.tool( 't2000_balance', "Get agent's current balance — available (checking), savings, credit (debt), gas reserve, and net total. All values in USD. For a full account snapshot, prefer t2000_overview instead.", {}, async () => { try { const result = await agent.balance(); return { content: [{ type: 'text', text: JSON.stringify(result) }] }; } catch (err) { return errorResult(err); } }, );