Skip to main content
Glama
inconcept

Bitbucket MCP

by inconcept

create_pull_request

Submit code changes for review by creating a pull request between branches, with configurable title, description, reviewers, and optional source branch cleanup after merge.

Instructions

Create a new pull request

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
repo_slugYesRepository slug
reviewersNoReviewer usernames or UUIDs
descriptionNo
source_branchYesBranch to merge from
destination_branchYesBranch to merge into
close_source_branchNoDelete source branch after merge

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0-development

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description carries the full burden for behavioral disclosure. It only states the basic create action and does not mention side effects, validation rules, required permissions, branch handling, or response behavior. It adds no behavioral context beyond what the tool name already conveys.

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

Conciseness2/5

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

The description is a single short sentence, so it is concise in size, but it is essentially a restatement of the tool name and provides not additional structured guidance. For a tool with 7 parameters and 23 sibling operations, this is underspecification rather than effective conciseness.

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

Completeness2/5

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

The tool has 7 parameters, no output schema, and no annotations, yet the description is only one generic sentence. It misses important operational context such as when to choose this over update/merge/decline, prerequisites like branching or permissions, and any post-create behavior. This is incomplete for reliable agent invocation.

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 71%, so the input schema already documents the meaning of most parameters. The tool description itself adds no parameter-specific information, but the schema provides enough semantic grounding for the required fields. Thus the baseline of 3 is appropriate.

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?

Description states a clear action and resource: 'Create a new pull request'. This distinguishes it from sibling read/update/merge/decline operations in the sibling list. However, it does not add any distinguishing detail beyond the tool name itself.

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 guidance is provided on when to use this tool versus alternatives like update_pull_request or merge_pull_request. The phrase 'a new pull request' implies the creation case but gives no explicit context, prerequisites, or exclusions.

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