dbx-mcp-server
Version:
A Model Context Protocol server for Dropbox integration with AI-powered PDF analysis, multi-directory indexing, and parallel processing
11 lines (10 loc) • 505 B
TypeScript
import { PromptWithResources } from '../types/resource-types.js';
export declare class ResourcePromptHandler {
private resourceHandler;
constructor();
private replaceArguments;
private resolveResourceUris;
processPrompt(prompt: PromptWithResources, args: Record<string, any>): Promise<PromptWithResources>;
processFolderReview(path: string, fileTypes?: string): Promise<PromptWithResources>;
processFileComparison(file1: string, file2: string): Promise<PromptWithResources>;
}