@nexus2520/bitbucket-mcp-server
Version:
MCP server for Bitbucket API integration - supports both Cloud and Server
67 lines • 1.57 kB
TypeScript
import { BitbucketApiClient } from '../utils/api-client.js';
export declare class ReviewHandlers {
private apiClient;
private username;
constructor(apiClient: BitbucketApiClient, username: string);
handleGetPullRequestDiff(args: any): Promise<{
content: {
type: string;
text: string;
}[];
isError: boolean;
} | {
content: {
type: string;
text: string;
}[];
}>;
handleApprovePullRequest(args: any): Promise<{
content: {
type: string;
text: string;
}[];
isError: boolean;
} | {
content: {
type: string;
text: string;
}[];
}>;
handleUnapprovePullRequest(args: any): Promise<{
content: {
type: string;
text: string;
}[];
isError: boolean;
} | {
content: {
type: string;
text: string;
}[];
}>;
handleRequestChanges(args: any): Promise<{
content: {
type: string;
text: string;
}[];
isError: boolean;
} | {
content: {
type: string;
text: string;
}[];
}>;
handleRemoveRequestedChanges(args: any): Promise<{
content: {
type: string;
text: string;
}[];
isError: boolean;
} | {
content: {
type: string;
text: string;
}[];
}>;
}
//# sourceMappingURL=review-handlers.d.ts.map