Backlog MCP Server

update_pull_request_comment

Modifies a comment on a pull request in Backlog by specifying the project, repository, pull request number, comment ID, and updated content. Ensures accurate and timely communication in code reviews.

Instructions

Updates a comment on a pull request

Input Schema

NameRequiredDescriptionDefault
commentIdYesComment ID
contentYesComment content
numberYesPull request number
projectIdOrKeyYesProject ID or project key
repoIdOrNameYesRepository ID or name

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "commentId": { "description": "Comment ID", "type": "number" }, "content": { "description": "Comment content", "type": "string" }, "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" } }, "required": [ "projectIdOrKey", "repoIdOrName", "number", "commentId", "content" ], "type": "object" }
ID: lktnbgdbjl