DEV Community

curatedmcp for CuratedMCP

Posted on • Originally published at curatedmcp.com

Dropbox MCP: Give Claude Direct Access to Your File Storage and Document Workflows

Install guide and config at curatedmcp.com

Dropbox MCP: Give Claude Direct Access to Your File Storage and Document Workflows

AI agents are most useful when they can actually do things. The official Dropbox MCP server bridges that gap by giving Claude, Cursor, and other AI agents read-write access to your Dropbox workspace—no copy-pasting files, no manual syncs, no bottlenecks.

What It Does

Dropbox MCP is a Model Context Protocol server that treats your Dropbox as a workspace your AI can navigate and modify. Your agent can browse folders, search for files by name or metadata, upload and download documents, create shared links with custom permissions, rename files, manage folder sharing, and even inspect file revisions.

Think of it as giving Claude a direct connection to where your actual work lives. This unlocks workflows like:

  • Document automation: AI reads a template from Dropbox, fills it with data, and saves the output back.
  • Knowledge synthesis: Claude searches your shared docs, summarizes findings, and generates a report—all file operations happen inside the agent, not on your end.
  • Collaborative workflows: Your agent can create and manage shared links on the fly, perfect for document handoffs or team review cycles.

The server also handles Dropbox Paper docs and comments, so it works with your entire content ecosystem.

How to Install

npx -y @dropbox/mcp
Enter fullscreen mode Exit fullscreen mode

Then add it to your Claude Desktop or Cursor config:

{
  "mcpServers": {
    "dropbox-mcp": {
      "command": "npx -y @dropbox/mcp"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

You'll need a Dropbox app token to authenticate. Grab one from the Dropbox Developer Console and set it as an environment variable.

Real-World Use Cases

  • Automated report generation: Ask Claude to pull raw data from a Dropbox folder, process it, format a markdown report, and save it back—all in one prompt.
  • Content library search and summarization: Index your team's shared docs in Dropbox, then ask Claude to find relevant files and synthesize them into a decision memo.
  • Batch file operations: Rename, reorganize, or move dozens of files based on naming patterns or metadata—let your agent do the repetitive work while you focus on the creative parts.

Full install guides for Claude Desktop, Cursor, Windsurf, and more at CuratedMCP.

Top comments (0)