Bitbucket Server MCP

create_pull_request

Create a new pull request

Input Schema

NameRequiredDescriptionDefault
descriptionNoPR description
projectYesBitbucket project key
repositoryYesRepository slug
reviewersNoList of reviewer usernames
sourceBranchYesSource branch name
targetBranchYesTarget branch name
titleYesPR 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" }