Skip to main content
Glama

Post incident update

statuspal_create_incident_update
Destructive

POSTS an update (e.g. investigating → identified → monitoring → resolved) to an existing incident on the LIVE public status page (and, with notify=true, notifies subscribers). StatusPal: POST /status_pages/{subdomain}/incidents/{incident_id}/updates.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesUpdate type — common values: "investigating", "identified", "monitoring", "resolved", "issue".
notifyNoWhether to notify/email subscribers about this update.
posted_atNoISO8601 timestamp for the update (optional; defaults to now).
subdomainNoStatus page subdomain (overrides STATUSPAL_SUBDOMAIN).
descriptionYesThe update message shown on the status page (required).
incident_idYesThe incident id to post an update to.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Beyond the destructiveHint annotation, the description discloses that the update appears on the LIVE public status page and that notify=true triggers subscriber notifications. This adds meaningful behavioral context for an agent deciding whether the action is appropriate. No contradiction with annotations.

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

Conciseness5/5

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

One dense sentence front-loads the action and resource, then adds the endpoint and key behavioral caveat. No filler is present, and the examples and live-page warning earn their place.

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

Completeness4/5

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

For a six-parameter mutation tool with a full input schema, the description plus annotations is sufficient to invoke it correctly: required parameters are in the schema, the public effect is stated, and the notify behavior is explained. It does not cover response/error details, but no output schema exists and these are not essential for correct invocation.

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?

Schema description coverage is 100%, so the schema already documents every parameter. The description largely repeats the type examples and notify behavior already present in the schema rather than adding new parameter-specific meaning, so the baseline score of 3 is appropriate.

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

Purpose5/5

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

States a specific action (POST an update), a specific resource (existing incident), and the lifecycle stage values. It also distinguishes itself from incident creation and read-only tools by explicitly targeting an existing incident on the LIVE public status page.

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

Usage Guidelines3/5

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

The description implies when to use it: when an incident already exists and the agent needs to post a status update. However, it does not explicitly mention alternatives such as statuspal_update_incident or state when not to use this tool, so guidance is mostly implied rather than explicit.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.