UNPKG

@aashari/mcp-server-atlassian-bitbucket

Version:

Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MC

20 lines (19 loc) 950 B
import { ControllerResponse } from '../types/common.types.js'; import { ListPullRequestCommentsToolArgsType, CreatePullRequestCommentToolArgsType } from '../tools/atlassian.pullrequests.types.js'; /** * List comments on a Bitbucket pull request * @param options - Options including workspace slug, repo slug, and pull request ID * @returns Promise with formatted pull request comments as Markdown content */ declare function listComments(options: ListPullRequestCommentsToolArgsType): Promise<ControllerResponse>; /** * Add a comment to a Bitbucket pull request * @param options - Options including workspace slug, repo slug, PR ID, and comment content * @returns Promise with a success message as content */ declare function addComment(options: CreatePullRequestCommentToolArgsType): Promise<ControllerResponse>; declare const _default: { listComments: typeof listComments; addComment: typeof addComment; }; export default _default;