Jira MCP Server

update_issue

Update an existing Jira issue

Input Schema

NameRequiredDescriptionDefault
assigneeNoEmail of new assignee
descriptionNoNew description
issueKeyYesKey of the issue to update
priorityNoNew priority
statusNoNew status
summaryNoNew summary/title

Input Schema (JSON Schema)

{ "properties": { "assignee": { "description": "Email of new assignee", "type": "string" }, "description": { "description": "New description", "type": "string" }, "issueKey": { "description": "Key of the issue to update", "type": "string" }, "priority": { "description": "New priority", "type": "string" }, "status": { "description": "New status", "type": "string" }, "summary": { "description": "New summary/title", "type": "string" } }, "required": [ "issueKey" ], "type": "object" }