Skip to main content
Glama

delete_incident_publication

Remove an incident from your public status page while keeping the audit record. Allows republishing the same incident later.

Instructions

Unpublish an incident from a status page. The publication row is kept for audit but disappears from the public page, and the same incident can be published again later.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
incidentUidYesUID of the internal monitoring incident.
publicationUidYesUID of the incident publication to remove from the page.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.32.1

TDQS

A4.5/5.0
Behavior5/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 explicitly states that the publication row is retained for audit, the incident disappears from the public page, and the same incident can be republished later—critical transparency for a delete-named operation.

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?

Two concise sentences front-load the main action and immediately follow with the most important behavioral caveats. There is no filler or redundant restating of the tool name.

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

Completeness5/5

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

For a simple two-parameter operation with no output schema, the description is complete. It explains what the tool does, what happens to the public page, what is retained, and whether the action is reversible, giving an agent everything needed to invoke it correctly.

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 both parameters are already documented in the schema. The description adds context about 'publication row' and audit behavior, but it does not significantly extend the meaning of the parameter names beyond what the schema provides.

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?

The description uses a specific verb ('Unpublish') and resource ('an incident from a status page'), making the operation immediately clear. It also differentiates this tool from sibling delete tools by emphasizing the audit-preserving, reversible nature of the action.

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

Usage Guidelines4/5

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

The description clearly conveys when this tool should be used: to remove an incident from a public status page while retaining the audit trail. It does not explicitly name alternatives or exclusions, but the context and behavior make the intended usage obvious.

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