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) 574 B
import { ControllerResponse } from '../types/common.types.js'; import { ListPullRequestsToolArgsType } from '../tools/atlassian.pullrequests.types.js'; /** * List Bitbucket pull requests with optional filtering options * @param options - Options for listing pull requests including workspace slug and repo slug * @returns Promise with formatted pull requests list content and pagination information */ declare function list(options: ListPullRequestsToolArgsType): Promise<ControllerResponse>; declare const _default: { list: typeof list; }; export default _default;