Skip to main content
Glama
mdanelutti

bitbucket-mcp-server

by mdanelutti

create_pull_request

Open a new Bitbucket pull request to merge a source branch into a destination branch. Specify workspace, repo, title, and source branch to submit code changes for review.

Instructions

Create a new pull request

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
draftNoCreate PR as draft
titleYesPR title
repo_slugYesRepository slug
reviewersNoArray of reviewer UUIDs or account IDs
workspaceYesBitbucket workspace slug
descriptionNoPR description (markdown)
source_branchYesSource branch name
destination_branchNoDestination branch (defaults to repo main branch)
close_source_branchNoDelete source branch after merge

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.4/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full behavioral burden, yet it discloses nothing about authentication requirements, side effects, defaults (draft, close_source_branch), or what happens on failure. It merely restates the tool name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The single sentence is front-loaded and waste-free, but it is undersized for a 9-parameter mutation tool — brevity here reflects missing content rather than efficient structure.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 9-parameter, non-idempotent mutation tool with no annotations and no output schema, a one-line restatement of the name leaves the agent without the information needed to invoke it safely or correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all 9 parameters are documented in the schema itself, making the baseline 3 appropriate. The description adds no parameter meaning whatsoever beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('Create a new pull request'), which is unambiguous against siblings like get_pull_request, update_pull_request, and merge_pull_request. It is clear but does not add any scope or platform context beyond the name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No when-to-use guidance, no prerequisites, and no acknowledgment of the surrounding workflow tools (e.g., that the source branch must exist, or that this precedes approve/merge). The agent gets no routing help.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.