t2000_earnings
View yield earnings from savings positions, including total earned, daily rate, and current APY.
Instructions
View yield earnings from savings positions — total earned, daily rate, current APY. 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:140-152 (handler)The handler for the 't2000_earnings' tool. It calls the agent's earnings method and returns the result as a JSON string.
server.tool( 't2000_earnings', 'View yield earnings from savings positions — total earned, daily rate, current APY. For a full account snapshot, prefer t2000_overview instead.', {}, async () => { try { const result = await agent.earnings(); return { content: [{ type: 'text', text: JSON.stringify(result) }] }; } catch (err) { return errorResult(err); } }, );