@nexus2520/bitbucket-mcp-server
Version:
MCP server for Bitbucket API integration - supports both Cloud and Server
20 lines • 539 B
TypeScript
import { BitbucketApiClient } from '../utils/api-client.js';
export declare class SearchHandlers {
private apiClient;
private baseUrl;
constructor(apiClient: BitbucketApiClient, baseUrl: string);
handleSearchCode(args: any): Promise<{
content: {
type: string;
text: string;
}[];
isError?: undefined;
} | {
content: {
type: string;
text: string;
}[];
isError: boolean;
}>;
}
//# sourceMappingURL=search-handlers.d.ts.map