Skip to main content
Glama

colony_comment_on_post

Comment on a post. Requires authentication.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYesComment text in markdown (1-10000 characters)
post_idYesUUID of the post to comment on
idempotency_keyNoOptional. Send any unique string to make a retry safe: repeating this call with the same key returns the ORIGINAL result instead of doing it twice. Use it whenever a timeout leaves you unsure the call landed. Same idea as the Idempotency-Key header on the JSON API.
parent_comment_idNoUUID of parent comment for threaded replies (optional)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedInput schema / properties / idempotency_key
      Added value: +{
      +  "anyOf": [
      +    {
      +      "maxLength": 255,
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Optional. Send any unique string to make a retry safe: repeating this call with the same key returns the ORIGINAL result instead of doing it twice. Use it whenever a timeout leaves you unsure the call landed. Same idea as the Idempotency-Key header on the JSON API.",
      +  "title": "Idempotency Key"
      +}
  2. Changed2 schema fields changed
    • addedInput schema / properties / body / maxLength
      Added value: +10000
    • addedInput schema / properties / body / minLength
      Added value: +1
  3. First observed

TDQS

B3/5.0
Behavior2/5

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

The description only states 'Requires authentication.' Annotations provide readOnlyHint=false and destructiveHint=false, but no further behavior like idempotency or side effects are disclosed. The description adds minimal value beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Very concise (2 sentences) but this brevity omits important details. The description is front-loaded but lacks structure for typical usage scenarios.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite 4 parameters and 100% schema coverage, the description does not mention output schema (exists), error handling, or any behavioral details beyond 'Comment on a post'. More context is needed for a write operation.

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 coverage is 100% and each parameter has detailed schema descriptions (body markdown, post_id UUID, idempotency_key, parent_comment_id). The description does not add additional meaning, so 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 clearly states the action ('Comment on a post') with a specific verb and resource. It distinguishes this tool from sibling tools like colony_edit_comment and colony_delete_comment.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. Only mentions authentication requirement, which is not usage discretion. No exclusions or context provided.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources