Skip to main content
Glama

t2000_sentinel_info

Retrieve detailed information about a specific Sui Sentinel, including its model, system prompt, prize pool, and attack history using its ID.

Instructions

Get detailed info about a specific Sui Sentinel — model, system prompt, prize pool, attack history. Use the sentinel ID or object ID from t2000_sentinel_list.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesSentinel agent ID or object ID

Implementation Reference

  • The tool 't2000_sentinel_info' is defined and implemented here, using `agent.sentinelInfo(id)` to fetch data.
    server.tool(
      't2000_sentinel_info',
      'Get detailed info about a specific Sui Sentinel — model, system prompt, prize pool, attack history. Use the sentinel ID or object ID from t2000_sentinel_list.',
      { id: z.string().describe('Sentinel agent ID or object ID') },
      async ({ id }) => {
        try {
          const s = await agent.sentinelInfo(id);
          return { content: [{ type: 'text', text: JSON.stringify({
            ...s,
            attackFee: s.attackFee.toString(),
            attackFeeSui: Number(s.attackFee) / 1e9,
            prizePool: s.prizePool.toString(),
            prizePoolSui: Number(s.prizePool) / 1e9,
          }) }] };
        } 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