jira_get_issue
Retrieve Jira issue details including status, assignee, priority, and description using issue key or URL. Access project information, timestamps, labels, and components for specific tickets.
Instructions
Retrieve details for a specific Jira issue by key or URL. Use this when the user mentions an issue like "PAYWALL-943" or pastes a Jira link (e.g., https://your.atlassian.net/browse/PAYWALL-943). Returns status, assignee, priority, project, type, labels, components, timestamps, and description.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expand | No | Additional issue details to include (e.g., ["comments", "attachments", "changelog"]) | |
fields | No | Specific fields to retrieve (e.g., ["summary", "status", "assignee"]) | |
issueKey | Yes | Issue key or full Jira URL (e.g., PROJECT-123 or https://your.atlassian.net/browse/PROJECT-123) |
Input Schema (JSON Schema)
{
"properties": {
"expand": {
"default": [],
"description": "Additional issue details to include (e.g., [\"comments\", \"attachments\", \"changelog\"])",
"items": {
"type": "string"
},
"type": "array"
},
"fields": {
"description": "Specific fields to retrieve (e.g., [\"summary\", \"status\", \"assignee\"])",
"items": {
"type": "string"
},
"type": "array"
},
"issueKey": {
"description": "Issue key or full Jira URL (e.g., PROJECT-123 or https://your.atlassian.net/browse/PROJECT-123)",
"type": "string"
}
},
"required": [
"issueKey"
],
"type": "object"
}