t2000_pending_rewards
Check pending protocol rewards from lending positions without claiming them. Shows claimable reward tokens per protocol and asset.
Instructions
Check pending protocol rewards from lending positions WITHOUT claiming them. Shows claimable reward tokens per protocol and asset. Use t2000_claim_rewards to actually collect and convert to USDC.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- packages/mcp/src/tools/read.ts:168-179 (handler)The handler for the 't2000_pending_rewards' tool, which calls 'agent.getPendingRewards()'.
server.tool( 't2000_pending_rewards', 'Check pending protocol rewards from lending positions WITHOUT claiming them. Shows claimable reward tokens per protocol and asset. Use t2000_claim_rewards to actually collect and convert to USDC.', {}, async () => { try { const result = await agent.getPendingRewards(); return { content: [{ type: 'text', text: JSON.stringify({ rewards: result, count: result.length }) }] }; } catch (err) { return errorResult(err); } },