Backlog MCP Server

update_issue

Modify and manage existing issues in Backlog by updating key details such as summary, priority, status, due date, assigned users, and comments for better project tracking and collaboration.

Instructions

Updates an existing issue

Input Schema

NameRequiredDescriptionDefault
actualHoursNoActual work hours
assigneeIdNoUser ID of the assignee
attachmentIdNoAttachment IDs
categoryIdNoCategory IDs
commentNoComment to add when updating the issue
descriptionNoUpdates an existing issue
dueDateNoScheduled due date (yyyy-MM-dd)
estimatedHoursNoEstimated work hours
issueIdOrKeyYesIssue ID or issue key
issueTypeIdNoIssue type ID
milestoneIdNoMilestone IDs
notifiedUserIdNoUser IDs to notify
priorityIdNoPriority ID
resolutionIdNoResolution ID
startDateNoScheduled start date (yyyy-MM-dd)
statusIdNoStatus ID
summaryNoSummary of the issue
versionIdNoVersion IDs

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "actualHours": { "description": "Actual work hours", "type": "number" }, "assigneeId": { "description": "User ID of the assignee", "type": "number" }, "attachmentId": { "description": "Attachment IDs", "items": { "type": "number" }, "type": "array" }, "categoryId": { "description": "Category IDs", "items": { "type": "number" }, "type": "array" }, "comment": { "description": "Comment to add when updating the issue", "type": "string" }, "description": { "description": "Updates an existing issue", "type": "string" }, "dueDate": { "description": "Scheduled due date (yyyy-MM-dd)", "type": "string" }, "estimatedHours": { "description": "Estimated work hours", "type": "number" }, "issueIdOrKey": { "description": "Issue ID or issue key", "type": [ "string", "number" ] }, "issueTypeId": { "description": "Issue type ID", "type": "number" }, "milestoneId": { "description": "Milestone IDs", "items": { "type": "number" }, "type": "array" }, "notifiedUserId": { "description": "User IDs to notify", "items": { "type": "number" }, "type": "array" }, "priorityId": { "description": "Priority ID", "type": "number" }, "resolutionId": { "description": "Resolution ID", "type": "number" }, "startDate": { "description": "Scheduled start date (yyyy-MM-dd)", "type": "string" }, "statusId": { "description": "Status ID", "type": "number" }, "summary": { "description": "Summary of the issue", "type": "string" }, "versionId": { "description": "Version IDs", "items": { "type": "number" }, "type": "array" } }, "required": [ "issueIdOrKey" ], "type": "object" }
ID: lktnbgdbjl