Bitbucket Server MCP

add_comment

Add a comment to a pull request

Input Schema

NameRequiredDescriptionDefault
parentIdNoParent comment ID for replies
prIdYesPull request ID
projectYesBitbucket project key
repositoryYesRepository slug
textYesComment text

Input Schema (JSON Schema)

{ "properties": { "parentId": { "description": "Parent comment ID for replies", "type": "number" }, "prId": { "description": "Pull request ID", "type": "number" }, "project": { "description": "Bitbucket project key", "type": "string" }, "repository": { "description": "Repository slug", "type": "string" }, "text": { "description": "Comment text", "type": "string" } }, "required": [ "project", "repository", "prId", "text" ], "type": "object" }