@zhanglc77/bitbucket-mcp-server
Version:
MCP server for Bitbucket API integration - supports both Cloud and Server
20 lines • 610 B
TypeScript
export interface ResourceUriParts {
scheme: string;
domain: string;
category: string;
resource?: string;
}
export declare class ResourceHandlers {
listResources(): Promise<{
resources: import("../resources/resource-definitions.js").Resource[];
resourceTemplates: import("../resources/resource-definitions.js").ResourceTemplate[];
}>;
readResource(uri: string): Promise<{
contents: {
type: "text";
text: string;
}[];
}>;
parseResourceUri(uri: string): ResourceUriParts;
}
//# sourceMappingURL=resource-handlers.d.ts.map