Backlog MCP Server

get_pull_request_comments

Retrieve and manage comments for a specific pull request in Backlog projects by specifying project, repository, and pull request details for streamlined collaboration.

Instructions

Returns list of comments for a pull request

Input Schema

NameRequiredDescriptionDefault
countNoNumber of comments to retrieve
maxIdNoMaximum comment ID
minIdNoMinimum comment ID
numberYesPull request number
orderNoSort order
projectIdOrKeyYesProject ID or project key
repoIdOrNameYesRepository ID or name

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "count": { "description": "Number of comments to retrieve", "type": "number" }, "maxId": { "description": "Maximum comment ID", "type": "number" }, "minId": { "description": "Minimum comment ID", "type": "number" }, "number": { "description": "Pull request number", "type": "number" }, "order": { "description": "Sort order", "enum": [ "asc", "desc" ], "type": "string" }, "projectIdOrKey": { "description": "Project ID or project key", "type": [ "string", "number" ] }, "repoIdOrName": { "description": "Repository ID or name", "type": "string" } }, "required": [ "projectIdOrKey", "repoIdOrName", "number" ], "type": "object" }
ID: lktnbgdbjl