Skip to main content
Glama
BrightbeamAI

@brightbeamai/chap-coordinator-mcp

Official

chap.abstain.declare

chap.abstain.declare

Declare abstention from a review by specifying the reviewer, reason, and category, moving the task to an abstained state.

Instructions

Stand aside from a review, giving a reason and a category. The task moves to abstained.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fromYesParticipant URI, e.g. 'human:alice@example.org' or 'agent:bot@local'.
reasonYesWhy this reviewer is standing aside. Recorded in the audit entry.
task_idYesTask identifier returned by chap.task.create.
categoryNoThe kind of abstention. Recorded in the audit entry.
workspaceYesWorkspace identifier, e.g. 'wsp_techcorp_support'.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.13

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It does disclose one concrete behavioral consequence: the task moves to abstained. However, it does not mention whether the action is reversible, what permissions are needed, whether the reason/category are persisted in an audit trail, or what happens if the abstaining reviewer was the sole reviewer.

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?

Two short sentences, no filler, with the action and its outcome placed directly and efficiently. Every phrase earns its place.

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

Completeness3/5

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

The description is minimally workable: it names the action and the immediate state change. But for a mutation tool with no annotations and no output schema, it lacks enough surrounding context about the review lifecycle, reversibility, and alternative behaviors to be fully self-sufficient.

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 coverage is 100%, so the description does not need to repeat parameter details. It adds little beyond the schema, and its phrase 'giving a reason and a category' slightly overstates category as required when the schema marks it optional.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('stand aside from a review'), what is supplied (reason and category), and the resulting state ('the task moves to abstained'). It does not name or contrast with siblings such as chap.decide.reject or chap.escalate.raise, so it stops short of explicit sibling differentiation.

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

Usage Guidelines2/5

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

There is no guidance on when abstention is appropriate versus rejecting, escalating, or handing off a review, and no prerequisites or exclusions are stated. The use case is only implied by the action itself.

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