Skip to main content
Glama
Mipiti
by Mipiti

Unreject Reconciliation Candidate

unreject_reconciliation_candidate

Remove a persisted rejection to make a reconciliation candidate eligible again in the active queue. Use when revisiting a prior decision.

Instructions

Remove a persisted reconciliation rejection. Mutates state.

The pair becomes eligible to surface in the active candidate queue again on the next read of list_reconciliation_candidates. Use when the operator changes their mind about a prior rejection — the surrogate rejection_id comes from rejections[*].id on list_reconciliation_candidates (disposition="rejected") (or the return value of reject_reconciliation_candidate).

Does NOT bump model version (rejection is org state, not model state).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
model_idYesID of the descendant threat model the rejection is on.
rejection_idYesSurrogate id of the persisted rejection.
server_versionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.66.0
    • changedInput schema / properties / model_id / description
      Previous value: -"ID of the descendant threat model the rejection is\non."New value: +"ID of the descendant threat model the rejection is on."
  2. Addedv0.62.2
  3. Removedv0.62.1
  4. First observedv0.57.0

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description carries full behavioral burden and meets it well. It explicitly says 'Mutates state,' describes the consequence that the pair becomes eligible again on the next read, and clarifies a potentially surprising non-effect: it does NOT bump the model version. This gives the agent a clear mental model of side effects.

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 well-organized: first the core action, then when/how to use, then a key caveat. Every sentence adds value with no filler or repetition of schema details.

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 3-parameter mutation tool with an output schema, the description covers the action, usage context, parameter source, and behavioral side effects. No critical information for correctly invoking the tool is missing.

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?

The schema already describes model_id and rejection_id, and the description adds important provenance for rejection_id by explaining it comes from rejections[*].id on list_reconciliation_candidates or from reject_reconciliation_candidate's return value. server_version remains undocumented in both schema and description, though the overall parameter guidance is 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?

Description opens with 'Remove a persisted reconciliation rejection,' a specific verb and resource that clearly identifies the action. It further distinguishes itself by referencing the inverse operation reject_reconciliation_candidate, so an agent can tell this tool apart from related siblings.

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?

Explicitly states when to use: 'Use when the operator changes their mind about a prior rejection.' It also tells the agent exactly where to obtain rejection_id, pointing to list_reconciliation_candidates with disposition='rejected' or the return value of reject_reconciliation_candidate. 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