Skip to main content
Glama
Mipiti
by Mipiti

Update Control Status

update_control_status

Update a security control's implementation status to 'implemented' or 'not_implemented'. Marking as implemented requires at least one existing assertion; otherwise, submit assertions first to avoid rejection.

Instructions

Update the implementation status of a security control. Mutating.

Sets the control's status to "implemented" or "not_implemented". Marking a control "implemented" REQUIRES at least one assertion on the control — check its assertion_count (via get_controls) first and submit assertions with submit_assertions if it is zero, or the call is rejected.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusYesNew status — "implemented" or "not_implemented".
model_idYesID of the threat model the control belongs to.
control_idYesID of the control to update (e.g. "CTRL-01").
server_versionYes
implementation_notesNoOptional free-text notes recorded with the status change.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.66.0
  2. Removedv0.62.2
  3. First observedv0.57.0

TDQS

A4.2/5.0
Behavior4/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 openly states that the operation is mutating and documents a non-obvious rejection condition: marking a control implemented requires at least one assertion. It could add more about side effects or permissions, but the critical behavioral trait is covered.

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?

Three focused sentences with no filler. The core action and mutating nature are front-loaded, followed by a clearly formatted precondition block. Every sentence adds value, and the REQUIRES is emphasized without unnecessary prose.

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?

With an output schema present, the description doesn't need to explain return values. Combined with the input schema, it gives an agent enough to call the tool correctly: required parameter names, permissible status values, and the critical assertion prerequisite. Minor gaps like error details or authentication are not essential for invoking the tool.

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 80%, so the schema already documents most parameters clearly. The description adds context around the status transition and the assertion requirement, but doesn't elaborate on parameter syntax beyond what the schema provides. server_version still has no meaningful description, but the high schema coverage keeps this at baseline.

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?

Description uses a specific verb and resource: it 'Sets the control's status to implemented or not_implemented'. It clearly distinguishes this from sibling tools like refine_control or remap_control by focusing solely on implementation status. The 'Mutating' label reinforces the action without ambiguity.

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 gives explicit context for when to use this tool: when updating a control's implementation status. It also names prerequisite tools and conditions — check assertion_count via get_controls and use submit_assertions before marking implemented, or the call is rejected. It doesn't explicitly state when not to use this tool versus an alternative, but the guidance is clear enough.

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