Official Dropbox MCP server for file access
## Dropbox MCP Server: Cloud Storage Integration The **Dropbox MCP Server** integrates the popular cloud storage platform directly into Google Antigravity, enabling AI assistants to manage files, folders, and sharing settings programmatically. This integration brings seamless cloud storage capabilities to your development workflow. ### Why Dropbox MCP? - **Universal Sync**: Reliable file synchronization across all devices and platforms - **Easy Sharing**: Simple link sharing with customizable permissions and expiration - **Version History**: Access file version history and restore previous versions - **Paper Integration**: Work with Dropbox Paper documents for collaborative editing - **Developer Friendly**: Clean, well-documented API for file operations ### Key Features #### 1. File Operations ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Upload this file to my Dropbox projects folder and create a share link" }], tools=[{ "name": "dropbox_files", "description": "Manage Dropbox files" }] ) ``` #### 2. Folder Management ```python # Manage folders response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create a new project folder structure with subfolders for docs, assets, and code" }], tools=[{"name": "dropbox_folders", "description": "Manage folders"}] ) ``` #### 3. Sharing ```python # Configure sharing response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Share this folder with the team with edit permissions" }], tools=[{"name": "dropbox_share", "description": "Manage sharing"}] ) ``` #### 4. Search ```python # Search files response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Search for all PDF files containing project proposal in my Dropbox" }], tools=[{"name": "dropbox_search", "description": "Search files"}] ) ``` ### Configuration ```json { "mcpServers": { "dropbox": { "command": "npx", "args": ["-y", "@anthropic/mcp-dropbox"], "env": { "DROPBOX_ACCESS_TOKEN": "your-dropbox-access-token" } } } } ``` ### Use Cases **File Backup**: Automate backup of important files and project assets to the cloud. **Asset Sharing**: Create and manage share links for client deliverables and assets. **Project Organization**: Maintain organized project folder structures with automated creation. **Version Management**: Track and restore file versions for document management. The Dropbox MCP Server brings cloud storage automation directly into your development workflow, enabling seamless file management.
{
"mcpServers": {
"dropbox": {
"mcpServers": {
"dropbox": {
"url": "https://mcp.dropbox.com/mcp",
"type": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR_DROPBOX_ACCESS_TOKEN"
}
}
}
}
}
}