Skip to main content
Glama
ranson21

jira-readonly-mcp

by ranson21

get_comments

Retrieve comments for a given Jira issue as compact structured data. Read-only, returns comment bodies and metadata for agent workflows.

Instructions

Fetch comments for a Jira issue as compact structured data. Read-only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax comments to return
issue_keyYesJira issue key, e.g. DEMO-123

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It usefully declares 'Read-only' and characterizes the return as 'compact structured data', which is genuine behavioral context. However, it omits any mention of permissions, pagination behavior, or truncation when the limit is hit.

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?

Two short sentences, no filler, with the core action front-loaded and the read-only caveat appended. Every word earns its place.

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

Completeness4/5

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

For a simple two-parameter read tool with full schema coverage and no output schema, the description is nearly complete: it names the resource and notes the return shape. Only the lack of guidance on the limit parameter and pagination keeps it short of full completeness.

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 both issue_key and limit are already documented in the schema (including the DEMO-123 format example). The description adds no parameter-level detail beyond that, so the baseline of 3 applies.

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+resource: fetch comments for a Jira issue. An agent can clearly tell what it returns. It does not differentiate itself from siblings like get_issue, but the resource name is distinct enough to disambiguate.

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 explicit when-to-use guidance or alternatives. The phrase 'for a Jira issue' implies it requires a known issue key, but there is no statement about when to prefer this over get_issue or search_issues, leaving usage to inference.

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