jira_update
Update Jira issue fields, transition to a new status, or edit comments. Provide issue key and update type to apply changes.
Instructions
Update a Jira issue or transition it to a new status.
update_type options: fields — Update issue fields (summary, description, priority, assignee, labels, etc.) transition — Move issue to a new status (uses transition ID from jira_read transitions) comment — Edit an existing comment
Fields update example: issue_key="KAN-42" update_type="fields" fields={summary:"Updated title", priority:{name:"High"}, assignee:{accountId:"abc123"}}
Transition example: issue_key="KAN-42" update_type="transition" transition_id="31" (Get transition IDs first with: jira_read resource_type="transitions" issue_key="KAN-42")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_key | Yes | Issue key (e.g. "KAN-42") | |
| update_type | Yes | ||
| fields | No | Fields to update | |
| transition_id | No | Transition ID (from jira_read transitions) | |
| comment_id | No | Comment ID to edit | |
| comment_body | No | New comment text |