UNPKG

dbx-mcp-server

Version:

A Model Context Protocol server for Dropbox integration with AI-powered PDF analysis, multi-directory indexing, and parallel processing

10 lines (9 loc) 686 B
import { McpToolResponse } from '../interfaces.js'; export declare function listFiles(path: string): Promise<McpToolResponse>; export declare function uploadFile(path: string, content: string): Promise<McpToolResponse>; export declare function downloadFile(path: string): Promise<McpToolResponse>; export declare function createFolder(path: string): Promise<McpToolResponse>; export declare function getFileMetadata(path: string): Promise<McpToolResponse>; export declare function getFileContent(path: string): Promise<McpToolResponse>; export declare function getRawFileMetadata(path: string): Promise<any>; export declare function downloadFileAsBuffer(path: string): Promise<Buffer>;