Skip to main content
Move a Jira issue to a new workflow status. First call get_transitions to get valid transition IDs, then pass the ID here.

Tool details

FieldValue
Namejira__transition_issue
GroupIntegrations

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "cloudId": {
      "type": "string",
      "description": "Atlassian cloud ID from OAuth accessible resources"
    },
    "issueIdOrKey": {
      "type": "string",
      "description": "Jira issue ID or key"
    },
    "transition": {
      "type": "object",
      "description": "Transition object with id field, e.g. {\"id\": \"21\"}"
    },
    "fields": {
      "type": "object",
      "description": "Optional field updates to apply during the transition"
    },
    "comment": {
      "type": "object",
      "description": "Optional comment in Atlassian Document Format to add with the transition"
    }
  },
  "required": [
    "cloudId",
    "issueIdOrKey",
    "transition"
  ],
  "description": "Input schema for the jira__transition_issue tool."
}

Output schema

This tool does not publish an output schema.