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

10 lines (9 loc) 412 B
/** * Executes a shell command. * * @param command The command string to execute. * @param operationDesc A brief description of the operation for logging purposes. * @returns A promise that resolves with the stdout of the command. * @throws An error if the command execution fails, including stderr. */ export declare function executeShellCommand(command: string, operationDesc: string): Promise<string>;