UNPKG

dbx-mcp-server

Version:

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

15 lines (14 loc) 354 B
export interface AnalyzePDFArgs { path: string; prompt: string; useThinking?: boolean; maxReasoningTokens?: number; } export interface PDFAnalysisResult { content: Array<{ type: string; text: string; }>; isError: boolean; } export declare function analyzePDF(args: AnalyzePDFArgs): Promise<PDFAnalysisResult>;