Skip to main content
Glama
inconcept

Bitbucket MCP

by inconcept

resolve_pr_comment

Marks a pull request comment thread as resolved in Bitbucket by specifying the repository, pull request ID, and comment ID.

Instructions

Resolve a comment thread on a pull request

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pr_idYesPull request ID
repo_slugYesRepository slug
comment_idYesComment ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0-development

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. 'Resolve' implies a state-changing mutation, but the description does not disclose side effects, reversibility, required permissions, or what happens after resolution. This is a minimal behavioral disclosure.

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

Conciseness5/5

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

The description is a single, focused sentence with no filler or repetition. It front-loads the action and resource clearly, and every word contributes meaning.

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

Completeness3/5

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

The tool is simple with three fully documented required parameters and no output schema. The description is adequate for basic invocation, but it omits behavioral details such as whether resolution is reversible and how the action relates to reopen_pr_comment. Minimum viable, but with clear gaps.

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 the schema already documents repo_slug, pr_id, and comment_id. The description adds little beyond the term 'thread', which hints that comment_id identifies a thread rather than an arbitrary comment. This meets the baseline but adds no substantial semantic value.

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

Purpose5/5

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

The description clearly states the specific verb 'Resolve' and the resource 'comment thread on a pull request'. This distinguishes it from siblings like add_pr_comment, update_pr_comment, and reopen_pr_comment, which all have distinct actions.

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

Usage Guidelines3/5

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

The usage is implied by the verb and resource: use this when you want to mark a comment thread as resolved. However, the description does not explicitly contrast it with reopen_pr_comment or state when not to use it, so an agent must infer the selection context.

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