Skip to main content
Glama
inconcept

Bitbucket MCP

by inconcept

list_pr_comments

Retrieve all comments on a Bitbucket pull request by providing the repository slug and pull request ID. Page through results to view the full discussion.

Instructions

List all comments on a pull request

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
pr_idYesPull request ID
repo_slugYesRepository slug

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0-development

TDQS

B3.1/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 behavioral burden but only restates the operation. It does not disclose that results are paginated via the page parameter, what 'all' means with respect to pagination, or any ordering/return behavior. It is not misleading, but it reveals little beyond the basic action.

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?

A single concise sentence, front-loaded with the verb and object, with no filler. Every word earns its place.

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?

For a list tool with no output schema and no annotations, the definition should at least explain pagination and return shape. The missing page semantics and lack of usage context leave an agent guessing how to retrieve the full set of comments.

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

Parameters2/5

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

The schema already describes repo_slug and pr_id, but the page parameter has no description and the tool description does not compensate. The phrase 'all comments' suggests broad scope but never explains how page interacts with retrieving all comments, leaving an agent unsure whether one call or multiple paged calls are needed.

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 uses a specific verb ('List') and identifies the exact resource ('comments on a pull request'). The word 'all' helps distinguish it from single-comment tools like get_pr_comment, and the overall purpose is immediately clear.

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 given about when to use this tool versus siblings like get_pr_comment, add_pr_comment, or list_pull_requests. The usage context is only implicit in the verb 'List', with no exclusions, prerequisites, or alternative routing.

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