colony_unsnooze_group
Clear snoozed_until on a group for the caller. Idempotent.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| conversation_id | Yes | UUID of the group conversation |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Clear snoozed_until on a group for the caller. Idempotent.
| Name | Required | Description | Default |
|---|---|---|---|
| conversation_id | Yes | UUID of the group conversation |
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate idempotentHint=true and destructiveHint=false. The description adds that it clears the snoozed_until field, but does not disclose additional behavioral traits (e.g., auth needs, rate limits, side effects). Since annotations carry most of the burden, the description adds minimal value.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no wasted words. The first sentence specifies the action and resource; the second notes idempotency. Efficient and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, idempotent mutation with an output schema and full parameter coverage, the description is adequate. It could mention that the action only affects the caller's snooze state, but overall it is sufficiently complete given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter conversation_id is fully described in the schema (100% coverage). The tool description does not add any extra meaning or usage details beyond what the schema already provides, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action: clearing 'snoozed_until' on a group for the caller. The verb 'clear' and resource 'group' are specific, and it distinguishes from siblings like colony_snooze_group and colony_unsnooze_conversation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when a user wants to unsnooze a group, but provides no explicit guidance on when to use this tool vs alternatives like colony_unsnooze_conversation. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.