Skip to main content
Glama
BrightbeamAI

@brightbeamai/chap-coordinator-mcp

Official

chap.escalate.raise

chap.escalate.raise

Escalate a task to a new assignee by moving the original to escalated status and creating a linked successor task. Provide workspace, original task ID, and successor details including assignee.

Instructions

Hand a task upwards. The original moves to escalated and is linked to a new task opened for whoever takes it on. The successor starts with an empty input unless one is supplied.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fromYesParticipant URI, e.g. 'human:alice@example.org' or 'agent:bot@local'.
new_taskYesThe successor task to open for the escalation target.
workspaceYesWorkspace identifier, e.g. 'wsp_techcorp_support'.
original_task_idYesThe task being escalated. It moves to 'escalated' and is linked to the successor. A completed, cancelled or superseded task cannot be escalated.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.13

TDQS

A3.6/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden. It discloses the key state change (original moves to 'escalated'), the creation and linking of a successor task, and the non-obvious empty-input default. Permission requirements or reversibility are not mentioned, but the core behavioral traits are 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?

Two sentences with no filler: the first introduces the concept, the second specifies the important behavioral twist about empty input. Every word earns its place.

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 4-parameter nested mutation tool with 100% schema coverage and no output schema, the description plus schema gives sufficient context to invoke the tool correctly. It lacks explicit alternatives or side-effect details like linking semantics, but nothing critical is missing.

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 reinforces the empty-input default already documented in new_task.input but does not add meaning beyond what the schema provides for any parameter.

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 states a specific action ('Hand a task upwards') and concrete effects: the original task moves to 'escalated' and a new linked successor task is opened. This clearly distinguishes it from generic update or route tools, though it does not explicitly name or contrast sibling tools like chap.handoff.propose or chap.task.route.

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 when-to-use guidance, no mention of alternatives, and no exclusions. The description implies use for manual escalation, but with many overlapping siblings (handoff, route, escalate.auto) it fails to help an agent choose correctly.

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