t2000_positions
View current lending positions across protocols like NAVI and Suilend, including deposits, borrows, and APYs for account monitoring.
Instructions
View current lending positions across protocols (NAVI, Suilend) — deposits, borrows, APYs. 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:84-96 (handler)The handler for 't2000_positions' which calls 'agent.positions()' and returns the result as text.
server.tool( 't2000_positions', 'View current lending positions across protocols (NAVI, Suilend) — deposits, borrows, APYs. For a full account snapshot, prefer t2000_overview instead.', {}, async () => { try { const result = await agent.positions(); return { content: [{ type: 'text', text: JSON.stringify(result) }] }; } catch (err) { return errorResult(err); } }, );