Skip to main content
Glama
ccampora

Jira Data Center MCP Server

by ccampora

Get Issue

get_issue

Get complete details for any Jira issue by its key, including summary, description, status, comments, labels, and assignee.

Instructions

Fetches full details for a single issue (GET /rest/api/2/issue/{key}): summary, description, status, comments, labels, and assignee.

Confluence access: linked Confluence pages are NOT part of an issue's fields and are never returned here. In Jira Data Center they are stored as REMOTE LINKS. To read the Confluence content associated with an issue, an agent should:

  1. Call get_issue_remote_links with the same issueKey to list linked Confluence pages (each entry has a url like .../pages/viewpage.action?pageId=).

  2. Extract the numeric pageId from that url (the pageId= query parameter).

  3. Call confluence_get_page with that pageId and format: "view" to get readable, server-rendered content (use format: "storage" for the raw source). These Confluence tools are available when CONFLUENCE_BASE_URL is configured. Alternatively, use confluence_search with a CQL query such as text ~ "<ISSUE-KEY>" to find pages that mention the issue.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
issueKeyYesIssue key, e.g. 'ABC-123'
Behavior4/5

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

With no annotations provided, the description carries full responsibility. It discloses a non-obvious limitation: linked Confluence pages are never included, and in Jira Data Center they appear as remote links. It also notes the dependency on CONFLUENCE_BASE_URL for certain tools. However, it does not specify response format or error behavior, which are minor gaps for a single-issue fetch.

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?

The description is longer than average, but every sentence serves a purpose: stating the action, listing return fields, and giving a detailed cross-tool workflow for Confluence. It is well-structured with a clear 'Confluence access' section. Slightly verbose but justified.

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

Completeness5/5

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

Given the tool's simplicity (one parameter, no output schema), the description is exceptionally complete. It explains the tool's scope, its relationship to other tools, and provides an end-to-end alternative workflow. It fully covers the context an agent needs to use it correctly.

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?

The schema already fully covers the single parameter (issueKey) with an example. The description adds usage context by referring to the issueKey in the workflow, but no extra parameter semantics beyond what the schema provides. Baseline 3 for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the verb ('fetches'), the resource ('full details for a single issue'), and the API endpoint. It lists specific fields returned, distinguishing it from sibling tools like get_issue_comments or search_issues.

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

Usage Guidelines5/5

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

Provides explicit guidance on when NOT to use this tool (Confluence content), and exactly when to use alternative tools (get_issue_remote_links, confluence_get_page, and confluence_search). The 'Confluence access' section offers a step-by-step workflow, covering both reading remote links and alternative search.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ccampora/jira-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server