Skip to main content
Glama
BrightbeamAI

@brightbeamai/chap-coordinator-mcp

Official

chap.handoff.propose

chap.handoff.propose

Propose handing off active tasks to a colleague or group, providing context, next actions, and blockers. Requires tasks to be currently assigned to you.

Instructions

Propose handing one or more tasks to another participant or a group, with the context needed to pick them up. Every task must currently be assigned to the proposer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYesRecipient, as a participant URI or a group URI such as 'group:support-team'. A recipient who is not a workspace member is refused with -32052.
fromYesParticipant URI, e.g. 'human:alice@example.org' or 'agent:bot@local'.
tasksYesThe work being handed over, one entry per task. Every task must currently be assigned to the proposer; otherwise the proposal is refused with -32050.
summaryNoCovering note for the handover as a whole, above the per-task detail.
workspaceYesWorkspace identifier, e.g. 'wsp_techcorp_support'.
context_linksNoURLs to threads, tickets or documents the recipient will need.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.13

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It clearly frames the action as a *proposal* rather than a direct transfer, and it discloses the task-assignment constraint. It does not detail the downstream proposal lifecycle, but the sibling tools and the word 'propose' make the core behavior reasonably transparent.

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 two sentences, front-loads the main action, and adds only the essential constraint. Every sentence earns its place with no filler or repetition.

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?

For a handoff-proposal tool, the description plus 100%-covered schema provide enough to call it correctly: recipient, proposer, tasks, and context fields are all documented. It could be more complete by explaining what happens after the proposal is submitted, but the core invocation context is well covered.

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 baseline is 3. The description adds no new parameter-level detail beyond framing the task metadata as 'context needed to pick them up'; the schema already documents each field, including error codes and examples.

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 uses a specific verb ('Propose handing') and identifies the resource (one or more tasks to another participant or group). It also includes the key constraint that every task must currently belong to the proposer, which helps distinguish it from related tools like chap.task.route or 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 Guidelines4/5

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

The description gives clear context: use this to propose a handoff with enough context for pickup. It states a strong precondition (tasks must be assigned to the proposer), but it does not explicitly mention alternatives or when-not-to-use cases relative to siblings like chap.handoff.accept, chap.handoff.decline, or chap.task.route.

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