Skip to main content
Glama
maggiechew

bitbucket-mcp

by maggiechew

getPullRequestActivity

Get a pull request's activity log covering comments, approvals, pushes, and status changes to review collaboration and progress.

Instructions

Get the activity log for a pull request (comments, approvals, pushes, status changes)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
pagelenNo
repo_slugNo
workspaceNo
pull_request_idYesPull request ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

There are no annotations, so the description carries the behavioral burden. The verb 'get' implies a read-only operation, and the parenthetical lists the kinds of events returned, which is useful. However, it does not disclose pagination behavior, ordering, response shape, or any edge-case behavior.

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. The activity types in parentheses add useful scoping without bloating the text.

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 description is adequate for a simple read operation, but with no output schema, no annotation, and no mention of pagination or parameter scoping, an agent has limited information about the return envelope or request boundaries. This is not severe for a getter, but still incomplete.

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?

Schema coverage is low: only pull_request_id has an inline description, and page, pagelen, repository, and workspace are left unexplained. The description names the broad activity-log concept but does not clarify how the parameters control or scope the request.

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 names a specific action ('get') and a specific resource ('activity log for a pull request'), and the parenthetical examples clarify what kinds of events are included. This is enough for an agent to distinguish it from sibling tools like getPullRequest or getPullRequestComments.

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 or alternative routing guidance is provided. The description does not explain when to choose this tool over getPullRequestComments or getPullRequestCommits, leaving the agent to infer usage from the tool name alone.

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