jira_transition
Transition a JIRA issue to a new workflow status using the transition name or ID. Optionally add a comment after the transition. List available transitions without applying one.
Instructions
Transition a JIRA issue to a new workflow status. Most common usage: pass the transition name in transition, e.g. transition: "In Progress". The numeric id also works, e.g. transition: "31". Names are matched case-insensitively. If unsure which transitions are valid from the issue's current status, call this tool first with list = true (or omit transition) to get the available {id, name} pairs as YAML, then call again with one of those names. Optionally posts comment (JFM markdown) after the transition succeeds.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| comment | No | Optional comment to add after the transition. | |
| key | Yes | JIRA issue key (e.g., `PROJ-123`). | |
| list | No | If true, returns the available transitions without applying one. | |
| transition | No | Transition name (case-insensitive) or numeric id, e.g. `"In Progress"` or `"31"`. Required unless `list` is true. |