Skip to main content
Glama

aga_quarantine_status

Check quarantine state and forensic capture status to verify system security compliance and incident response readiness.

Instructions

Get quarantine state and forensic capture status. (Claim 5)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler for the 'aga_quarantine_status' tool, which checks the portal and quarantine state and returns the forensic capture status.
    export async function handleQuarantineStatus(_args: Record<string, never>, ctx: ServerContext) {
      if (ctx.portal.state !== 'PHANTOM_QUARANTINE' && !ctx.quarantine?.active) {
        return ctx.error('Quarantine status unavailable - portal is not in quarantine state', {
          portal_state: ctx.portal.state,
        });
      }
    
      return ctx.json({
        quarantine_active: ctx.quarantine?.active ?? false,
        started_at: ctx.quarantine?.started_at ?? null,
        inputs_captured: ctx.quarantine?.inputs_captured ?? 0,
        outputs_severed: ctx.quarantine?.outputs_severed ?? false,
        forensic_buffer_size: ctx.quarantine?.forensic_buffer.length ?? 0,
        portal_state: ctx.portal.state,
      });
    }
  • src/server.ts:248-253 (registration)
    Registration of the 'aga_quarantine_status' tool in the main MCP server setup.
    // 14. aga_quarantine_status (ungoverned)
    server.tool('aga_quarantine_status',
      'Get quarantine state and forensic capture status. (Claim 5)',
      {},
      async () => handleQuarantineStatus({} as any, ctx),
    );
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is a 'Get' operation, implying read-only behavior, but doesn't clarify authentication requirements, rate limits, error conditions, or what 'forensic capture status' entails. The mention of '(Claim 5)' is unexplained and doesn't add meaningful behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is brief but includes an unexplained element '(Claim 5)' that doesn't earn its place. The core purpose is stated efficiently in the first clause, but the parenthetical adds noise without clear value. A single clear sentence would be more effective.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations and no output schema, the description is insufficient. It doesn't explain what 'quarantine state' means in this context, what format the response takes, or how 'forensic capture status' relates to other tools. The unexplained '(Claim 5)' further reduces completeness. More context about the return values and system behavior is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters with 100% schema description coverage, so the schema fully documents the absence of inputs. The description appropriately doesn't discuss parameters, maintaining focus on what the tool retrieves rather than what it accepts. This meets the baseline expectation for parameterless tools.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with the verb 'Get' and specifies the resources: 'quarantine state and forensic capture status'. It distinguishes this as a retrieval operation among siblings that include creation, delegation, and verification tools. However, it doesn't explicitly differentiate from other read-only siblings like 'aga_get_chain' or 'aga_get_portal_state'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, context for checking quarantine status, or relate it to other tools like 'aga_start_monitoring' or 'aga_trigger_measurement'. The parenthetical '(Claim 5)' is cryptic and doesn't offer practical usage instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/attestedintelligence/aga-mcp-server'

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