@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) • 341 B
TypeScript
import { ControllerResponse } from '../types/common.types.js';
/**
* Handle search for code content (uses Bitbucket's Code Search API)
*/
export declare function handleCodeSearch(workspaceSlug: string, repoSlug?: string, query?: string, limit?: number, cursor?: string, language?: string, extension?: string): Promise<ControllerResponse>;