Skip to main content
Glama
yanqiw

Coordination Memory MCP

by yanqiw

waive_deviation

Formally downgrade a blocker deviation to acceptable_this_phase, recording the actor and reason for audit.

Instructions

Acceptor-only: formally downgrade a blocker deviation to acceptable_this_phase.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reasonYes
actor_idYes
actor_roleYes
contract_idYes
deviation_idYes
base_revisionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.6

TDQS

A3.5/5.0
Behavior3/5

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

There are no annotations, so the description carries the behavioral disclosure burden. It does disclose an authorization constraint ('Acceptor-only') and a state transition ('blocker' to 'acceptable_this_phase'), but it does not explain side effects, reversibility, concurrency implications of base_revision, or failure behavior.

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 a single focused sentence with no filler. The most important constraint ('Acceptor-only') is front-loaded, and every word adds meaning.

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

Completeness2/5

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

This is a mutation tool with six required parameters, no annotations, and no parameter descriptions in the schema. One sentence is not enough to guide an agent safely: it needs clarity on base_revision, the meaning and necessity of reason, and any preconditions or side effects.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for parameter meanings. It only hints at actor_role ('Acceptor-only') and the target deviation state ('blocker'), but it does not explain base_revision, reason, contract_id, deviation_id, or actor_id semantics.

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 states a specific verb ('downgrade'), a specific resource ('blocker deviation'), and a concrete target state ('acceptable_this_phase'). It also names the role constraint upfront ('Acceptor-only'), which distinguishes it from related deviation-handling tools like raise_deviation.

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

Usage Guidelines3/5

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

The description gives clear context by specifying that only acceptors can perform this action and that it applies to blocker deviations. However, it does not explicitly say when to choose this over alternatives such as reject_event, review_event, or respond_intervention, nor does it state when not to use it.

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