jira_get_issue
Retrieve detailed information for a specific JIRA issue by providing the issue key, enabling streamlined access to task or project data.
Instructions
Get details of a specific JIRA issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueKey | Yes | The JIRA issue key (e.g., PROJECT-123) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"issueKey": {
"description": "The JIRA issue key (e.g., PROJECT-123)",
"type": "string"
}
},
"required": [
"issueKey"
],
"type": "object"
}