UNPKG

dbx-mcp-server

Version:

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

9 lines (8 loc) 359 B
import { Dropbox } from 'dropbox'; export interface ClientOptions { useTeamSpace?: boolean; forceTeamSpace?: boolean; } export declare function getDropboxClient(options?: ClientOptions): Promise<Dropbox>; export declare function getDropboxClientForPath(path: string): Promise<Dropbox>; export declare function formatDropboxPath(path: string): string;