get_jira_issue
Retrieve detailed Jira issue information including status, assignee, priority, and descriptions by providing the issue key for project tracking and management.
Instructions
Get detailed information about a Jira issue by its key (e.g., PROJ-123)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueKey | Yes | The Jira issue key (e.g., PROJ-123, TASK-456) |
Input Schema (JSON Schema)
{
"properties": {
"issueKey": {
"description": "The Jira issue key (e.g., PROJ-123, TASK-456)",
"type": "string"
}
},
"required": [
"issueKey"
],
"type": "object"
}