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) 552 B
import { ControllerResponse } from '../types/common.types.js'; import { CreatePullRequestToolArgsType } from '../tools/atlassian.pullrequests.types.js'; /** * Create a new pull request in Bitbucket * @param options - Options including workspace slug, repo slug, source branch, target branch, title, etc. * @returns Promise with formatted pull request details as Markdown content */ declare function add(options: CreatePullRequestToolArgsType): Promise<ControllerResponse>; declare const _default: { add: typeof add; }; export default _default;