jira_update_issue
Update specific fields on an existing Jira issue, such as summary, assignee, priority, labels, or Markdown description. Send only the fields you want to change.
Instructions
Update one or more fields on an existing Jira issue. Provide only the fields you want to change. When updating description, ALWAYS use Markdown format. Supports summary, description (Markdown format), assignee (accountId), priority, labels, and any other valid Jira field.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fields | Yes | An object containing the fields to update. Well-known keys: 'summary' (string), 'description' (REQUIRED when updating - Markdown string with headers, lists, tables, formatting; or null to clear), 'assignee' (accountId string or null to unassign), 'priority' (name string), 'labels' (string[]). Any other valid Jira field can also be included. | |
| issueIdOrKey | Yes | The Jira issue key (e.g. 'PROJ-123') or numeric issue ID. |