Skip to main content
Glama
BrightbeamAI

@brightbeamai/chap-coordinator-mcp

Official

chap.participant.revoke_key

chap.participant.revoke_key

Revoke a signing key after device loss or compromise, immediately refusing future signatures. Requires admin role to revoke another participant's key.

Instructions

Revoke a signing key, for example after a device is lost. Signatures presented with it are refused from then on. Revoking another participant's key requires the admin role.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kidYesKey id to revoke. It is marked revoked with a timestamp and a reason, and signatures presented with it are refused from then on. A key id that is unknown is refused with -32071.
fromYesParticipant URI, e.g. 'human:alice@example.org' or 'agent:bot@local'.
reasonNoWhy the key was revoked, e.g. 'laptop lost'. Recorded on the key and in the audit entry.
workspaceYesWorkspace identifier, e.g. 'wsp_techcorp_support'.
target_uriYesWhose key is being revoked. Revoking another member's key requires the caller to hold the role 'admin'; otherwise the call is refused with -32011.

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 provided, the description carries the behavioral burden. It discloses the permanent effect ('refused from then on') and the admin role requirement for revoking another participant's key. It could add that revocation is irreversible or that the action is audit-logged, but the provided behavior is solid and non-misleading.

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?

Three short sentences, each earning its place: purpose and example, behavioral consequence, and permission requirement. The most important information is front-loaded and there is no verbose filler.

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 schema covers parameter semantics and error codes, while the description covers purpose, behavior, and authorization. It is complete enough for an agent to call the tool correctly; a minor gap is not explicitly contrasting revocation with key rotation, but this is not essential to 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%, so the schema already documents all parameters in detail. The description adds only one piece of contextual glue ('after a device is lost') and otherwise relies on the schema, which is appropriate.

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 clearly states the specific action ('Revoke a signing key') and resource, with a concrete example ('after a device is lost'). It also distinguishes itself from the sibling rotate_key by focusing on permanent invalidation of signatures.

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 for when revocation is appropriate, such as a lost device, and explains the consequence that signatures will be refused. It does not explicitly compare against the sibling rotate_key, but the scenario-based guidance is sufficient for an agent to understand the primary use case.

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