Bitbucket Server MCP
by garc33
add_comment
Add a comment to a pull request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parentId | No | Parent comment ID for replies | |
prId | Yes | Pull request ID | |
project | Yes | Bitbucket project key | |
repository | Yes | Repository slug | |
text | Yes | Comment 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"
}