jira_get_issue
Retrieve detailed information about a specific JIRA issue by providing the issue key. This tool integrates with JIRA MCP Server to streamline access to ticket details directly within your IDE.
Instructions
Retrieves detailed information about a specific JIRA issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueKey | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"issueKey": {
"pattern": "^[A-Z]+-\\d+$",
"type": "string"
}
},
"required": [
"issueKey"
],
"type": "object"
}