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) 192 B
interface McpContent { type: string; text: string; encoding?: 'base64' | 'utf8'; } interface McpToolResponse { content: McpContent[]; } export { McpContent, McpToolResponse };