MCP Atlassian

jira_transition_issue

Transition a Jira issue to a new status

Input Schema

NameRequiredDescriptionDefault
commentNoComment to add during the transition (optional)
fieldsNoJSON string of fields to update during the transition (optional){}
issue_keyYesJira issue key (e.g., 'PROJ-123')
transition_idYesID of the transition to perform (get this from jira_get_transitions)

Input Schema (JSON Schema)

{ "properties": { "comment": { "description": "Comment to add during the transition (optional)", "type": "string" }, "fields": { "default": "{}", "description": "JSON string of fields to update during the transition (optional)", "type": "string" }, "issue_key": { "description": "Jira issue key (e.g., 'PROJ-123')", "type": "string" }, "transition_id": { "description": "ID of the transition to perform (get this from jira_get_transitions)", "type": "string" } }, "required": [ "issue_key", "transition_id" ], "type": "object" }