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

12 lines (11 loc) 381 B
import { Command } from 'commander'; /** * Register Bitbucket pull requests CLI commands with the Commander program * @param program - The Commander program instance to register commands with * @throws Error if command registration fails */ declare function register(program: Command): void; declare const _default: { register: typeof register; }; export default _default;