t2000_history
View recent transactions including sends, saves, borrows, swaps, and investments to generate activity summaries and weekly recaps.
Instructions
View recent transactions (sends, saves, borrows, swaps, investments). Use for activity summaries and weekly recaps.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of transactions to return (default: 20) |
Implementation Reference
- packages/mcp/src/tools/read.ts:126-138 (handler)The t2000_history tool is defined and implemented here, using `agent.history` to fetch the data.
server.tool( 't2000_history', 'View recent transactions (sends, saves, borrows, swaps, investments). Use for activity summaries and weekly recaps.', { limit: z.number().optional().describe('Number of transactions to return (default: 20)') }, async ({ limit }) => { try { const result = await agent.history({ limit }); return { content: [{ type: 'text', text: JSON.stringify(result) }] }; } catch (err) { return errorResult(err); } }, );