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) 550 B
import { ControllerResponse } from '../types/common.types.js'; import { GetPullRequestToolArgsType } from '../tools/atlassian.pullrequests.types.js'; /** * Get detailed information about a specific Bitbucket pull request * @param options - Options including workspace slug, repo slug, and pull request ID * @returns Promise with formatted pull request details as Markdown content */ declare function get(options: GetPullRequestToolArgsType): Promise<ControllerResponse>; declare const _default: { get: typeof get; }; export default _default;