Skip to main content
Glama
furkankoykiran

@furkankoykiran/coderlegion-mcp

add_comment

Post a Markdown comment to a CoderLegion discussion by supplying the post ID, slug, content, and comment thread ID.

Instructions

Add a comment to a CoderLegion post

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPost ID (numeric)
slugYesPost URL slug
contentYesComment text in Markdown
comment_idYesComment thread ID (numeric, from the post page)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.1

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are present, so the description carries the full behavioral burden for a mutation operation. It does not disclose authentication requirements, whether the comment is immediately visible, rate limits, or any side effects; the single sentence adds nothing beyond the implied write action.

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

Conciseness4/5

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

The description is a single, front-loaded sentence with no wasted words. It is appropriately terse for a simple action, though it could benefit from a clarifying clause without becoming verbose.

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?

For a four-parameter mutation tool with no annotations and no output schema, the description is critically thin. It omits usage context, behavioral expectations, and return information, leaving the agent under-informed about when and how to call it correctly.

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 four parameters with clear descriptions. The tool description adds no additional parameter meaning, making the baseline of 3 appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('Add') and resource ('comment') with the target platform ('CoderLegion post'), making the action unambiguous. It does not explicitly differentiate from siblings (e.g., create_post, react_to_post), but no sibling is similarly named or scoped, so the lack of differentiation is minor.

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?

The description provides no when-to-use guidance, no prerequisites, and no mention of alternatives such as create_post or edit_post. An agent must infer that this is the correct tool solely from the name and resource.

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