Skip to main content
Glama
Juhwan01

Jira Extended MCP Server

by Juhwan01

get_issue_links

Retrieve all links for a Jira issue using its key, enabling AI agents to trace dependencies, duplicates, and related work.

Instructions

Get all links for an issue.

Args: issue_key: Issue key (e.g., "KAN-123")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
issue_keyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.2

TDQS

A3.5/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. It identifies a read operation but does not disclose pagination behavior, permission requirements, scope (e.g., all link types), or any other trait beyond the basic purpose.

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?

The description is two short sentences with no filler. The purpose is front-loaded, and the parameter example is concise and directly useful.

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 read tool with an output schema and a single parameter, the description covers the core purpose and parameter usage. The main gap is behavioral context, but given the low complexity and available output schema, it is largely complete.

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. It defines the sole parameter as an issue key and provides a concrete example ('KAN-123'), which adequately documents the single required string input.

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 verb ('Get') and resource ('all links for an issue'), making clear it retrieves issue links. It implicitly distinguishes itself from siblings like link_issues and delete_issue_link, though it does not name alternatives explicitly.

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 action itself: an agent would call this when it needs to see links for a known issue key. However, the description provides no explicit when-to-use guidance, prerequisites, or comparison to alternatives such as get_issue or search_issues.

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