Skip to main content
Glama

Atlassian Bitbucket MCP Server

by aashari

bb_ls_pr_comments

Retrieve and display all comments from a specified pull request in Bitbucket, including inline code comments with author, timestamp, content, and location. Supports pagination for large datasets using limit and cursor parameters.

Instructions

Lists comments on a specific pull request identified by prId within a repository (repoSlug). If workspaceSlug is not provided, the system will use your default workspace. Retrieves both general PR comments and inline code comments, indicating their location if applicable. Supports pagination via limit and cursor. Pagination details are included at the end of the text content. Returns a formatted Markdown list with each comment's author, timestamp, content, and location for inline comments. Requires Bitbucket credentials to be configured.

Input Schema

NameRequiredDescriptionDefault
cursorNoPagination cursor for retrieving the next set of results. Obtained from previous response when more results are available.
limitNoMaximum number of items to return (1-100). Controls the response size. Defaults to 25 if omitted.
prIdYesNumeric ID of the pull request to retrieve comments from as a string. Must be a valid pull request ID in the specified repository. Example: "42"
repoSlugYesRepository slug containing the pull request. This must be a valid repository in the specified workspace. Example: "project-api"
workspaceSlugNoWorkspace slug containing the repository. If not provided, the system will use your default workspace. Example: "myteam"

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "cursor": { "description": "Pagination cursor for retrieving the next set of results. Obtained from previous response when more results are available.", "type": "string" }, "limit": { "description": "Maximum number of items to return (1-100). Controls the response size. Defaults to 25 if omitted.", "exclusiveMinimum": 0, "maximum": 100, "type": "integer" }, "prId": { "description": "Numeric ID of the pull request to retrieve comments from as a string. Must be a valid pull request ID in the specified repository. Example: \"42\"", "minLength": 1, "type": "string" }, "repoSlug": { "description": "Repository slug containing the pull request. This must be a valid repository in the specified workspace. Example: \"project-api\"", "minLength": 1, "type": "string" }, "workspaceSlug": { "description": "Workspace slug containing the repository. If not provided, the system will use your default workspace. Example: \"myteam\"", "type": "string" } }, "required": [ "repoSlug", "prId" ], "type": "object" }
Install Server

Other Tools from Atlassian Bitbucket MCP Server

Related Tools

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aashari/mcp-server-atlassian-bitbucket'

If you have feedback or need assistance with the MCP directory API, please join our Discord server