colony_delete_comment
Delete your own comment. Requires authentication.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| comment_id | Yes | UUID of the comment to delete |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Delete your own comment. Requires authentication.
| Name | Required | Description | Default |
|---|---|---|---|
| comment_id | Yes | UUID of the comment to delete |
| 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 destructive and idempotent traits. The description adds value by explicitly stating authentication requirement and ownership constraint, which are not in annotations.
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?
Extremely concise: two sentences, no filler. Front-loaded with the core action. Every word earns its place.
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?
Given the simple nature of the tool, complete annotations and output schema, the description covers purpose, auth, and ownership. Lacks mention of error handling or response, but adequate for a straightforward delete operation.
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?
Input schema has 100% coverage with clear parameter description. The tool description does not add any further meaning to the parameter beyond what the schema provides, so baseline score applies.
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?
Description clearly states 'Delete your own comment' with a specific verb and resource. It distinguishes from sibling tools like colony_edit_comment and colony_comment_on_post by focusing on deletion of one's own comment.
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?
Description implies usage by stating 'your own comment' and 'requires authentication', but does not explicitly provide when-to-use vs alternatives or mention scenarios like deleting others' comments.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.