Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_issue_by_issue_id_comment

Idempotent

Add a comment to an existing issue to provide updates or feedback.

Instructions

Create a comment.

POST /api/v1/issue/{issueId}/comment

Args: issue_id: Path parameter. body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes
issue_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=false and idempotentHint=true, so the write nature is covered. The description adds the HTTP path and tells the agent to consult the GET or /schema endpoint before sending the body, which is useful behavioral context. It does not disclose auth requirements, response behavior, or rate limits, but there is no contradiction with annotations.

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 compact and front-loaded: a one-sentence purpose, the endpoint, and a two-line argument list. There is no filler, though it could have been slightly more informative without losing structure.

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

Completeness3/5

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

For a create tool with an open body and an output schema, the description provides the minimal path and a schema-discovery instruction. It lacks context on when to use this versus update/delete comment tools and does not mention authentication or side effects beyond creation, but the output schema covers return values. Overall adequate but not comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description compensates by labeling issue_id as a path parameter and body as the request payload, and it explicitly directs the agent to the matching GET or /schema endpoint to discover expected body fields. Since body is additionalProperties:true, that pointer is essential. It does not enumerate concrete body fields, but for an open body this is reasonable guidance.

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?

The description states a specific action ('Create a comment') and includes the POST endpoint, making it clear this tool adds a comment to an issue. It does not explicitly contrast with siblings like update_issue_comment_by_comment_id or delete_issue_comment_by_comment_id, but the verb and resource are unambiguous.

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?

There is no guidance on when to use this tool versus alternatives. The instruction to read the matching GET or /schema endpoint is about constructing the body, not about selecting this tool. An agent must infer usage from the tool name and endpoint.

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

Deploy Server

Other Tools