Skip to main content
Glama
Mipiti
by Mipiti

Update Finding

update_finding

Advance a security finding to a new lifecycle stage—acknowledged, remediated, verified, or dismissed—while recording notes, rationale, and remediation evidence.

Instructions

Advance a finding through its lifecycle. Mutating: updates the finding's status and metadata.

Use to acknowledge, remediate, verify, or dismiss a finding previously recorded by submit_findings / list_findings. This records a MANUAL status transition — the machine-set auto_resolved state is not among the statuses it accepts; for gaps whose kind has an automatic fix, preview_finding_remediation + apply_finding_remediation perform the actual cleanup instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
notesNoOptional free-text notes recorded on the finding.
reasonNoOptional rationale; required when dismissing (status="dismissed").
statusYesNew lifecycle status, one of "discovered", "acknowledged", "remediated", "verified", "dismissed". ``auto_resolved`` is NOT settable here: it asserts that a condition is no longer reproduced, which is a claim only the platform can make from its own re-evaluation. Setting it by hand would forge that claim, so this tool refuses it — use ``dismissed`` (with a reason) to record that a gap does not matter, which is the judgment a person is entitled to make.
model_idYesID of the threat model.
finding_idYesID of the finding to update.
server_versionYes
remediation_assertion_idsNoOptional comma-separated assertion IDs that evidence the fix, linking the remediation to the assertions that prove it. Empty by default.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.71.0
    • changedInput schema / properties / status / description
      Previous value: -"New lifecycle status, one of \"discovered\", \"acknowledged\", \"remediated\", \"verified\", \"dismissed\"."New value: +"New lifecycle status, one of \"discovered\", \"acknowledged\", \"remediated\", \"verified\", \"dismissed\". ``auto_resolved`` is NOT settable here: it asserts that a condition is no longer reproduced, which is a claim only the platform can make from its own re-evaluation. Setting it by hand would forge that claim, so this tool refuses it — use ``dismissed`` (with a reason) to record that a gap does not matter, which is the judgment a person is entitled to make."
  2. Changed5 schema fields changedv0.66.0
    • changedInput schema / properties / finding_id / description
      Previous value: -"ID of the finding."New value: +"ID of the finding to update."
    • changedInput schema / properties / notes / description
      Previous value: -"Optional notes."New value: +"Optional free-text notes recorded on the finding."
    • changedInput schema / properties / reason / description
      Previous value: -"Optional reason (required for dismissal)."New value: +"Optional rationale; required when dismissing (status=\"dismissed\")."
    • changedInput schema / properties / remediation_assertion_ids / description
      Previous value: -"Comma-separated assertion IDs linking fix."New value: +"Optional comma-separated assertion IDs that evidence the fix, linking the remediation to the assertions that prove it. Empty by default."
    • changedInput schema / properties / status / description
      Previous value: -"New status."New value: +"New lifecycle status, one of \"discovered\", \"acknowledged\", \"remediated\", \"verified\", \"dismissed\"."
  3. Addedv0.62.2
  4. Removedv0.62.0
  5. First observedv0.57.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of disclosing mutation and side effects: it says 'Mutating,' records a MANUAL status transition, and explains that auto_resolved is deliberately refused. It does not discuss permissions or reversibility, but its explicit coverage of the tool's most important behavioral constraint is substantial.

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 first line front-loads the essential action, and the rest is organized into clear usage-and-alternative guidance. It is efficient, though the second paragraph partially repeats the status schema's explanation of auto_resolved.

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?

The description provides the needed selection context: what the tool does, that it mutates, which statuses are valid, and which sibling tools handle the cases it refuses. Combined with a rich input schema and an output schema, nothing critical is missing for an agent 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 86%, above the high-coverage threshold, so the baseline is 3 even without description-level parameter detail. The description does add context around status (manual transition vs auto_resolved), but much of that is already present in the status parameter's own schema description, and server_version remains undocumented in both the schema and description.

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-resource pair, 'Advance a finding through its lifecycle,' and identifies the concrete mutation ('pdates the finding's status and metadata'). It also names sibling tools (submit_findings/list_findings, preview_finding_remediation/apply_finding_remediation), so an agent can distinguish this from related operations.

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

Usage Guidelines5/5

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

It explicitly says 'Use to acknowledge, remediate, verify, or dismiss a finding previously recorded by submit_findings/list_findings,' which defines exactly when to call it. It also gives an exclusion: auto_resolved is not accepted, and directs agents with auto-fixable gaps to preview/apply remediation instead. This is strong routing guidance.

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

Deploy Server

Other Tools