Skip to main content
Glama
Juhwan01

Jira Extended MCP Server

by Juhwan01

get_comments

Retrieve comments from a Jira issue by providing its issue key, with an optional limit on the number of results returned.

Instructions

Get comments on an issue.

Args: issue_key: Issue key (e.g., "KAN-123") max_results: Maximum number of comments (default 50)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
issue_keyYes
max_resultsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.2

TDQS

B3.1/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. 'Get' implies a read, but the description does not confirm read-only safety, describe ordering of results, or explain what happens when there are more comments than max_results (pagination/truncation).

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?

Front-loaded with the core purpose in the first sentence, followed by a compact per-parameter block. Slightly list-like but no wasted prose.

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-value explanation is not required, and both parameters are covered. However, for a list-style tool with a max_results cap, the absence of any pagination/ordering note leaves an operational gap.

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 description coverage is 0%, so the description must compensate, and it does document both parameters: issue_key with a concrete format example ('KAN-123') and max_results with its default (50). It stops short of explaining pagination or how max_results interacts with the total set.

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 and resource ('Get comments on an issue'), which clearly distinguishes it from the sibling add_comment (write) and get_issue (issue body). It does not explicitly name those siblings, but the read/comment scope 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 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 versus alternatives such as add_comment or get_issue. The description gives no context about prerequisites, permissions, or when fetching comments is appropriate.

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