Skip to main content
Glama
topotal

Waroom MCP

by topotal

waroom_update_incident_status

Update incident status in Waroom MCP to track progress through detection, investigation, fixing, resolution, and closure stages.

Instructions

インシデントのステータスを更新します。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
incident_uuidYes更新するインシデントのUUID
statusYes新しいステータス(detected, investigating, fixing, resolved, close)

Implementation Reference

  • The handler function that executes the tool logic: calls waroomClient.updateIncidentStatus with the provided incident_uuid and status, formats the response as JSON, and handles errors.
      try {
        const response = await waroomClient.updateIncidentStatus(params.incident_uuid, params.status);
        return {
          content: [{
            type: 'text',
            text: JSON.stringify(response, null, 2)
          }]
        };
      } catch (error) {
        return {
          content: [{
            type: 'text',
            text: `インシデントステータスの更新に失敗しました: ${error}`
          }]
        };
      }
    }
  • Zod input schema defining the required parameters: incident_uuid (UUID string) and status (one of the specified incident statuses).
    {
      incident_uuid: z.string().uuid().describe('更新するインシデントのUUID'),
      status: z.enum(['detected', 'investigating', 'fixing', 'resolved', 'close']).describe('新しいステータス(detected, investigating, fixing, resolved, close)'),
    },
  • Registration of the 'waroom_update_incident_status' tool with the MCP server, specifying name, description, input schema, and handler function.
    server.tool(
      'waroom_update_incident_status',
      'インシデントのステータスを更新します。',
      {
        incident_uuid: z.string().uuid().describe('更新するインシデントのUUID'),
        status: z.enum(['detected', 'investigating', 'fixing', 'resolved', 'close']).describe('新しいステータス(detected, investigating, fixing, resolved, close)'),
      },
      async (params) => {
        try {
          const response = await waroomClient.updateIncidentStatus(params.incident_uuid, params.status);
          return {
            content: [{
              type: 'text',
              text: JSON.stringify(response, null, 2)
            }]
          };
        } catch (error) {
          return {
            content: [{
              type: 'text',
              text: `インシデントステータスの更新に失敗しました: ${error}`
            }]
          };
        }
      }
    );
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool updates incident status, implying a mutation operation, but lacks details on permissions required, whether changes are reversible, rate limits, or what happens on success/failure. For a mutation tool with zero annotation coverage, this is a significant gap in transparency.

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

Conciseness4/5

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

The description is a single, efficient sentence in Japanese that directly states the tool's purpose without unnecessary words. It is appropriately sized and front-loaded, making it easy to parse. However, it could be slightly improved by including key usage context, but as-is, it earns high marks for brevity and clarity.

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?

Given that this is a mutation tool with no annotations and no output schema, the description is incomplete. It lacks information on behavioral traits (e.g., side effects, error handling), usage guidelines, and output expectations. While the input schema is well-documented, the overall context for safe and effective use is insufficient, especially for an update operation.

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

Parameters3/5

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

The description does not add any parameter semantics beyond what the input schema provides. The schema has 100% description coverage, clearly documenting both parameters (incident_uuid as a UUID and status with an enum). Since the schema does the heavy lifting, the baseline score of 3 is appropriate, as the description does not compensate but also does not detract.

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 action ('update') and resource ('incident status') in Japanese, which translates to 'Update incident status.' This is specific and unambiguous about what the tool does. However, it does not differentiate from sibling tools like 'waroom_update_incident_labels' or 'waroom_update_incident_severity,' which also update incidents but target different attributes.

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. For example, it does not specify prerequisites (e.g., needing an existing incident UUID), contrast with tools like 'waroom_get_incident_details' for reading status, or mention when not to use it (e.g., for creating incidents). This leaves the agent without context for tool selection.

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/topotal/waroom-mcp'

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