Skip to main content
Glama
BrightbeamAI

@brightbeamai/chap-coordinator-mcp

Official

chap.control.set_mode_ceiling

chap.control.set_mode_ceiling

Set the maximum operating mode tasks in a workspace can request, refusing tasks above that ceiling. Enforce workspace limits on AI agent work.

Instructions

Set the highest operating mode tasks in this workspace may request. A task above the ceiling is refused.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fromYesParticipant URI, e.g. 'human:alice@example.org' or 'agent:bot@local'.
reasonNoWhy the ceiling is being changed. Recorded in the audit entry.
workspaceYesWorkspace identifier, e.g. 'wsp_techcorp_support'.
new_ceilingYesThe highest mode tasks in this workspace may request from now on. Existing tasks keep the mode they were created with. Where the coordinator is configured to enforce step-up authentication this method is one of the privileged ones and a call without step-up is refused with -32402.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.13

TDQS

A3.8/5.0
Behavior3/5

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

The description discloses one meaningful behavior: tasks above the ceiling are refused. However, with no annotations provided, it does not surface other important behavioral traits such as whether existing tasks are affected, whether step-up authentication may be required, or whether the change is audited/reversible.

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 short sentences with no filler. The core action is front-loaded, and the behavioral consequence is stated immediately after in a compact way.

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 rich parameter schema that already documents existing-task behavior and step-up authentication, the description plus schema is largely adequate for invoking the tool correctly. It is slightly incomplete at tool level because it does not mention the privileged/authentication caveat or explicitly define the mode hierarchy, but those gaps are partially covered by the schema.

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 each parameter already has a meaningful description. The tool description adds no parameter-level detail beyond what the schema provides, so the baseline score of 3 applies.

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 ('Set'), a specific resource ('the highest operating mode tasks in this workspace may request'), and a concrete consequence ('A task above the ceiling is refused'). This clearly differentiates it from sibling control and workspace tools.

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?

Usage is only implied: an agent can infer this tool is used to raise or lower the allowed operating-mode ceiling for a workspace. However, the description does not mention when to prefer this over alternatives such as workspace.set_profiles or control.cancel/supersede, nor does it state any exclusions.

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