t2000_sentinel_list
List active AI agents with prize pools available for attack. Shows name, fee, prize amount, and attack count to identify bounty hunting opportunities.
Instructions
List active Sui Sentinels — AI agents with prize pools you can attack. Shows name, attack fee, prize pool, and attack count. Use this for bounty hunting.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- packages/mcp/src/tools/read.ts:246-265 (handler)Implementation of the 't2000_sentinel_list' tool handler, which fetches active Sui Sentinels using the agent SDK and formats the data for the MCP response.
server.tool( 't2000_sentinel_list', 'List active Sui Sentinels — AI agents with prize pools you can attack. Shows name, attack fee, prize pool, and attack count. Use this for bounty hunting.', {}, async () => { try { const sentinels = await agent.sentinelList(); const serializable = sentinels.map(s => ({ ...s, attackFee: s.attackFee.toString(), attackFeeSui: Number(s.attackFee) / 1e9, prizePool: s.prizePool.toString(), prizePoolSui: Number(s.prizePool) / 1e9, })); return { content: [{ type: 'text', text: JSON.stringify(serializable) }] }; } catch (err) { return errorResult(err); } }, );