Backlog MCP Server

update_pull_request

Modify existing pull requests by updating details such as summary, description, assignee, issue linkage, and status. Integrates with Backlog for efficient project management.

Instructions

Updates an existing pull request

Input Schema

NameRequiredDescriptionDefault
assigneeIdNoUser ID of the assignee
descriptionNoUpdates an existing pull request
issueIdNoIssue ID to link
notifiedUserIdNoUser IDs to notify
numberYesPull request number
projectIdOrKeyYesProject ID or project key
repoIdOrNameYesRepository ID or name
statusIdNoStatus ID
summaryNoSummary of the pull request

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assigneeId": { "description": "User ID of the assignee", "type": "number" }, "description": { "description": "Updates an existing pull request", "type": "string" }, "issueId": { "description": "Issue ID to link", "type": "number" }, "notifiedUserId": { "description": "User IDs to notify", "items": { "type": "number" }, "type": "array" }, "number": { "description": "Pull request number", "type": "number" }, "projectIdOrKey": { "description": "Project ID or project key", "type": [ "string", "number" ] }, "repoIdOrName": { "description": "Repository ID or name", "type": "string" }, "statusId": { "description": "Status ID", "type": "number" }, "summary": { "description": "Summary of the pull request", "type": "string" } }, "required": [ "projectIdOrKey", "repoIdOrName", "number" ], "type": "object" }
ID: lktnbgdbjl