Skip to main content
Glama

Get issue

get_issue
Read-onlyIdempotent

Retrieve a Jira issue’s key, status, summary, source ticket number, and customer order number by providing its issue key.

Instructions

Read a Jira issue key, status, summary, Source Ticket #, and Customer Order #.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYesIssue key, for example SDG-12.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYes
statusNo
summaryNo
source_ticketNo
customer_orderNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true and openWorldHint=true, so the safety profile is covered. The description adds that it returns a specific set of fields, but says nothing about error behavior for missing keys, permission requirements, or field projection options.

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?

One short sentence, front-loaded with the verb and resource. The trailing field list ('Source Ticket #, and Customer Order #') is slightly awkward but still earns its place by previewing the returned data.

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?

An output schema exists, so return values need not be enumerated, yet the description supplies a useful preview anyway. For a single-parameter read tool with full annotation coverage, nothing essential is missing.

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 coverage is 100% and the single key parameter is documented in the schema with a concrete example (SDG-12). The description only repeats the notion of a key, adding no format or edge-case detail beyond the schema, so the baseline 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 ('Read') and resource ('a Jira issue'), plus the fields surfaced (key, status, summary, Source Ticket #, Customer Order #). The read verb implicitly contrasts with the sibling create_issue, but it never names or explicitly distinguishes it, so it falls short of a 5.

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?

The usage is only implied: fetch one issue by key. There is no statement of when to prefer this over alternatives or when it is inapplicable, though with only create_issue as a sibling the ambiguity is low.

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