Tool details
Playground
Input schema
input-schema.json
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Move a Jira issue to a new workflow status. First call get_transitions to get valid transition IDs, then pass the ID here.
| Field | Value |
|---|---|
| Name | jira__transition_issue |
| Group | Integrations |
{
"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": {
"anyOf": [
{
"type": "string",
"description": "Plain text comment to convert to update.comment[].add.body in Atlassian Document Format."
},
{
"type": "object",
"description": "Transition comment object. If it has a body field, the body may be plain text or an ADF document."
}
],
"description": "Optional transition comment. Pass plain text or a Jira transition comment object; the API sends it as update.comment[].add."
},
"update": {
"type": "object",
"description": "Jira issue update operations. Plain text transition comments are converted to update.comment[].add.body."
}
},
"required": [
"cloudId",
"issueIdOrKey",
"transition"
],
"description": "Input schema for the jira__transition_issue tool."
}