Skip to main content
Glama
BrightbeamAI

@brightbeamai/chap-coordinator-mcp

Official

chap.handoff.decline

chap.handoff.decline

Decline a proposed handoff by recording the reason and optional alternate target, so the proposer can route work to someone else.

Instructions

Decline a proposed handoff, with a reason and optionally a suggestion of who should take it instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fromYesParticipant URI, e.g. 'human:alice@example.org' or 'agent:bot@local'.
reasonNoWhy the handover is refused. Recorded so the proposer can route it elsewhere.
workspaceYesWorkspace identifier, e.g. 'wsp_techcorp_support'.
handoff_idYesIdentifier returned by chap.handoff.propose. A handoff already accepted or declined is refused with -32051.
suggested_targetNoWho should take it instead, if the decliner knows.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.13

TDQS

B3.4/5.0
Behavior2/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 only says 'Decline a proposed handoff' and mentions the reason/suggestion fields, but does not disclose side effects, that the reason is recorded for the proposer, whether the action is reversible, or that already-finalized handoffs produce error -32051. This is a meaningful gap for a state-changing tool.

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, concise sentence that front-loads the core action and covers the two key semantic points: a reason is expected and a suggestion is optional. There is no wasted wording or repetition of schema details.

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?

For a handoff-decline mutation with no annotations and no output schema, the description is too sparse. It omits behavioral context, error states, and what happens after declining. An agent is left without enough information to predict side effects or handle edge cases like already-accepted handoffs.

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 100%, so the parameters are already well documented. The description adds mild value by emphasizing that the reason is central and the suggested_target is optional, but it does not add meaning beyond what the schema already provides. Baseline 3 is appropriate.

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 ('Decline') and resource ('a proposed handoff'), with clear modifiers explaining that a reason is required and a suggestion is optional. This unambiguously differentiates it from sibling tools like chap.handoff.propose and chap.handoff.accept.

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 usage context is implied: use this when declining a proposed handoff. However, the description does not explicitly state when not to use it, nor does it mention alternatives such as chap.handoff.accept or chap.decide.reject. The guidance is adequate but not explicit.

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