Bitbucket Server MCP
by garc33
create_pull_request
Create a new pull request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | PR description | |
project | Yes | Bitbucket project key | |
repository | Yes | Repository slug | |
reviewers | No | List of reviewer usernames | |
sourceBranch | Yes | Source branch name | |
targetBranch | Yes | Target branch name | |
title | Yes | PR title |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "PR description",
"type": "string"
},
"project": {
"description": "Bitbucket project key",
"type": "string"
},
"repository": {
"description": "Repository slug",
"type": "string"
},
"reviewers": {
"description": "List of reviewer usernames",
"items": {
"type": "string"
},
"type": "array"
},
"sourceBranch": {
"description": "Source branch name",
"type": "string"
},
"targetBranch": {
"description": "Target branch name",
"type": "string"
},
"title": {
"description": "PR title",
"type": "string"
}
},
"required": [
"project",
"repository",
"title",
"sourceBranch",
"targetBranch"
],
"type": "object"
}