rafee-bitbucket-mcp-server
Version:
MCP server for Bitbucket API integration - supports both Cloud and Server
33 lines • 847 B
TypeScript
import { BitbucketApiClient } from '../utils/api-client.js';
export declare class FileHandlers {
private apiClient;
private baseUrl;
private readonly DEFAULT_LINES_BY_EXT;
constructor(apiClient: BitbucketApiClient, baseUrl: string);
handleListDirectoryContent(args: any): Promise<{
content: {
type: string;
text: string;
}[];
isError: boolean;
} | {
content: {
type: string;
text: string;
}[];
}>;
handleGetFileContent(args: any): Promise<{
content: {
type: string;
text: string;
}[];
isError: boolean;
} | {
content: {
type: string;
text: string;
}[];
}>;
private getDefaultLines;
}
//# sourceMappingURL=file-handlers.d.ts.map