Skip to main content
Glama

deleteFixItem

DestructiveIdempotent

Remove a hand-authored fix item from an audit's fix list permanently. Confirm before deletion, as the item cannot be regenerated.

Instructions

Permanently remove one entry from an audit's fix list.

Fix items are hand-authored and cannot be regenerated by re-running the audit, so confirm with the user first. Item IDs come from listFixItems.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
auditIdYesAudit ID.
fixItemIdYesFix item ID from listFixItems.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
auditIdYes
deletedYes
fixItemIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.1.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already mark the operation as destructive and idempotent, so the description need not repeat those. It adds meaningful context by stating the deletion is permanent and the fix items cannot be regenerated by re-running the audit, which informs the agent about irreversible consequences beyond the annotation flags.

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?

The description is compact and front-loaded, stating the core action in the first sentence. The second sentence earns its place by explaining irreversibility and providing a confirmation instruction, with no filler or redundancy.

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 destructive action with an output schema and strong annotations, the description covers what the tool does, how to confirm usage, and where to source the item ID. Nothing essential is missing for correct invocation.

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?

Schema coverage is 100%, so the baseline is adequate. The description adds real value by specifying that fixItemId must come from listFixItems, preventing arbitrary or guessed IDs. auditId remains minimally documented, but the high schema coverage keeps this dimension strong.

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 ('remove') and a clear resource ('entry from an audit's fix list'), making the operation unmistakable. It also distinguishes the tool from sibling fix-list tools like listFixItems and saveFixItems by framing this as a permanent deletion.

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?

It provides actionable usage guidance: confirm with the user before deleting, and obtain fixItemId from listFixItems. It does not explicitly enumerate when not to use this tool versus other deletion tools like deleteSiteAudit, but the guidance is clear and sufficient for the intended use.

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