Skip to main content
Glama
BrightbeamAI

@brightbeamai/chap-coordinator-mcp

Official

chap.control.rollback

chap.control.rollback

Restore workspace mode ceiling and member roles from a snapshot. Log the rollback as a new audit entry, preserving the original audit history.

Instructions

Restore workspace state from a snapshot. The mode ceiling and member roles are restored; the rollback is appended to the audit log rather than rewriting it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fromYesParticipant URI, e.g. 'human:alice@example.org' or 'agent:bot@local'.
reasonNoWhy the rollback was performed. The rollback is itself an audit entry; earlier entries are not rewritten.
workspaceYesWorkspace identifier, e.g. 'wsp_techcorp_support'.
what_to_restoreNoWhich captured aspects to apply. Only 'mode_ceiling' and 'members' are restored; the others are held in the snapshot and not reapplied. Restoring members resets role and scopes on members still present, and does not re-add members who have left. Defaults to the snapshot's include list.
to_snapshot_artefact_idYesArtefact id returned by chap.control.snapshot. An id with no matching snapshot is refused with -32062.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.13

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It discloses a key side effect—'the rollback is appended to the audit log rather than rewriting it'—and states which snapshot aspects are reapplied. It does not mention authorization requirements or explicitly warn that current state is overwritten, but the core behavioral traits are disclosed.

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 with no filler. The primary action is front-loaded, followed by the most important behavioral caveats. Every clause adds value.

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?

Given the full schema coverage and the description's clear high-level behavior, this is largely complete for correct invocation. It would benefit from stating what the rollback returns or what happens on failure beyond the schema's -32062 note, but the essential behavioral context is present.

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 each parameter already has a meaningful description. The tool description adds no parameter-level detail, but the baseline of 3 is appropriate because the schema fully carries that responsibility.

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 and resource: 'Restore workspace state from a snapshot.' It also names the precise aspects that are restored (mode ceiling and member roles), which differentiates it from snapshot creation and other control operations. The purpose is immediately clear.

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 intended use is implied: use this when you need to restore a workspace from a previously captured snapshot. However, it does not explicitly state when to choose this over alternatives such as chap.control.supersede or chap.control.cancel, nor does it mention 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.