Skip to main content
Glama
BrightbeamAI

@brightbeamai/chap-coordinator-mcp

Official

chap.workspace.create

chap.workspace.create

Set up a collaborative workspace that groups participants, tasks, and an audit log, and returns a workspace id for subsequent operations.

Instructions

Create a workspace: the container for the participants, tasks and audit log of one piece of collaborative work. Returns the workspace id, which every later call carries.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNoDefault mode for tasks created here. Under modes/1.0 a trial-mode task has review_required set to true whatever the caller passes. 'shadow' and 'production' are recorded on the task and carry no further behaviour in this implementation.trial
profilesNoProfile identifiers to enable, e.g. ['core/1.0', 'review/1.0']. Recorded on the workspace. Two profiles change behaviour by being present: modes/1.0, under which a trial-mode task requires review, and audit-scitt/1.0, which turns on the hash-linked chain.
workspaceNoWorkspace id to create. If omitted, one is generated.
mode_ceilingNoHighest mode a task in this workspace may request. A task.create above the ceiling is refused with -32040. The ceiling can be changed afterwards with chap.control.set_mode_ceiling.production

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.13

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral transparency burden. It usefully discloses that the call returns a workspace id used by later calls, and 'create' implies a mutating/persistent side effect. However, it does not mention idempotency, error behavior, or any consequences of overwriting an existing workspace id, which are relevant for a creation operation.

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 well-structured sentence that communicates the resource being created, its conceptual role, and the important return value. There is no fluff or repetition; every clause 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?

The description covers the core return value and conceptual role, and the schema richly documents all parameters and defaults. For a creation tool with no output schema, the main ingredient—what it returns and why that matters—is present. It is slightly shy of a 5 because it does not address edge behaviors such as what happens when an explicit workspace id already exists, but the overall context is sufficient for correct invocation.

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%, and every parameter, including defaults and mode-specific behavior, is documented in the input schema. The description adds no parameter-level details, but with full schema coverage the baseline of 3 is appropriate; it does not need to compensate for missing schema documentation.

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 and resource: 'Create a workspace.' It further clarifies what a workspace is—the container for participants, tasks, and audit log—and distinguishes this creation tool from siblings like chap.workspace.describe or chap.workspace.set_profiles. The return value is also identified, making the purpose unmistakable.

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 provides clear contextual guidance by framing a workspace as the container for collaborative work, so an agent can infer this tool is for starting a new piece of collaborative work. It does not explicitly name conditions or alternatives, but among the siblings this is the only creation call for workspaces, so the usage context is clear with no exclusions.

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