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

13 lines (12 loc) 542 B
import { ControllerResponse } from '../types/common.types.js'; import { ApprovePullRequestToolArgsType } from '../tools/atlassian.pullrequests.types.js'; /** * Approve a pull request in Bitbucket * @param options - Options including workspace slug, repo slug, and pull request ID * @returns Promise with formatted approval confirmation as Markdown content */ declare function approve(options: ApprovePullRequestToolArgsType): Promise<ControllerResponse>; declare const _default: { approve: typeof approve; }; export default _default;