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) 573 B
import { ControllerResponse } from '../types/common.types.js'; import { UpdatePullRequestToolArgsType } from '../tools/atlassian.pullrequests.types.js'; /** * Update an existing pull request in Bitbucket * @param options - Options including workspace slug, repo slug, pull request ID, title, and description * @returns Promise with formatted updated pull request details as Markdown content */ declare function update(options: UpdatePullRequestToolArgsType): Promise<ControllerResponse>; declare const _default: { update: typeof update; }; export default _default;