Skip to main content
Glama
Juhwan01

Jira Extended MCP Server

by Juhwan01

add_comment

Add a comment to a Jira issue using its issue key and body text. Supports Jira wiki markup for rich formatting.

Instructions

Add a comment to an issue.

Args: issue_key: Issue key (e.g., "KAN-123") body: Comment text (plain text, supports Jira wiki markup for rich text)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes
issue_keyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.2

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden, yet it says nothing about permissions, whether watchers get notified, whether the comment can be edited/deleted afterward, or any rate limits. Only the wiki-markup formatting note hints at behavior.

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

Conciseness5/5

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

One-line purpose statement followed by a tight two-argument list; no filler, and the purpose is front-loaded before the parameter detail.

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?

An output schema exists, so return values need no explanation, and both parameters are documented. The gap is behavioral: for a mutation tool with zero annotations, side effects like comment notifications or permission requirements are left unstated.

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?

Schema coverage is 0%, so the description must compensate, and it does: it explains issue_key's format with an example ("KAN-123") and clarifies that body is plain text supporting Jira wiki markup. That is meaningful detail the bare string-typed schema lacks.

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 to an issue), which clearly separates it from the sibling get_comments. It stops short of explicitly naming or contrasting with that sibling, but the intent is unambiguous.

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

Usage Guidelines3/5

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

Usage is implied by the verb — comment on an issue when you have text to attach — but there is no explicit when-to-use framing, no prerequisites, and no mention of get_comments as the read-side alternative.

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