dbx-mcp-server
Version:
A Model Context Protocol server for Dropbox integration with AI-powered PDF analysis, multi-directory indexing, and parallel processing
12 lines (11 loc) • 650 B
TypeScript
export declare const SERVER_COMMAND = "node";
export declare const SERVER_ARGS: string[];
export declare const timestamp: string;
export declare const TEST_FOLDER_NAME: string;
export declare const TEST_FILE_NAME: string;
export declare const TEST_FILE_CONTENT = "Hello, this is a test file created by the Dropbox MCP test suite.";
export declare const TOKEN_STORE_PATH: string;
export declare function encodeBase64(text: string): string;
export declare function decodeBase64(base64: string): string;
export declare function sendMcpRequest(request: any): Promise<any>;
export declare function callMcpTool(toolName: string, args?: any): Promise<any>;