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

6 lines (5 loc) 307 B
import { ControllerResponse } from '../types/common.types.js'; /** * Handle search for pull requests (uses PR API with query filter) */ export declare function handlePullRequestSearch(workspaceSlug: string, repoSlug?: string, query?: string, limit?: number, cursor?: string): Promise<ControllerResponse>;