@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
7 lines (6 loc) • 358 B
TypeScript
import { ControllerResponse } from '../types/common.types.js';
/**
* Handle search for repositories (limited functionality in the API)
*/
export declare function handleRepositorySearch(workspaceSlug: string, _repoSlug?: string, // Renamed to indicate it's intentionally unused
query?: string, limit?: number, cursor?: string): Promise<ControllerResponse>;