jira_update_issue
Update an existing Jira issue by key, modifying fields like summary, description, priority, assignee, labels, or components. Description format can be markdown, ADF, or plain text.
Instructions
Updates an existing Jira issue by its key. Supports updating summary, description, priority, assignee, labels, and components. Description format is controlled by the "format" parameter (default: markdown). Only specified fields will be updated.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Description format: "markdown" (converts Markdown to ADF), "adf" (use as-is ADF object), "plain" (converts plain text to ADF with basic formatting). Default: "markdown" | markdown |
| labels | No | New labels (replaces existing) | |
| parent | No | New parent issue key (e.g., PROJECT-100). Set to empty string to remove the parent. | |
| summary | No | New summary | |
| assignee | No | New assignee account ID | |
| issueKey | Yes | Issue key to update | |
| priority | No | New priority | |
| components | No | New components (replaces existing) | |
| description | No | New description. Accepts plain text or ADF object. | |
| returnIssue | No | When false, skip fetching full issue after update |