Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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);
        }
      },
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mission69b/t2000'

If you have feedback or need assistance with the MCP directory API, please join our Discord server