Provides integration with Dropbox's API, offering tools for file operations (listing, uploading, downloading), metadata retrieval, search functionality, folder management, sharing capabilities, and account information access.
dbx-mcp-server
A Model Context Protocol (MCP) server that provides integration with Dropbox, allowing MCP-compatible clients to interact with Dropbox through a set of powerful tools.
Important Disclaimer: This project is not affiliated with, endorsed by, or sponsored by Dropbox. It is an independent integration that works with Dropbox's public API.
Table of Contents
Quick Start
- Clone the repository 
- Run - npm installto install dependencies
- Run - npm run buildto build the project
- Register a Dropbox app at Dropbox App Console: - Choose "Scoped access" API 
- Choose the access type your app needs 
- Name your app and click "Create app" 
- Under "Permissions", select the required permissions: - files.metadata.read
- files.content.read
- files.content.write
- sharing.write
- account_info.read
 
- Add - http://localhost:3000/callbackas your redirect URI
- Note your App key and App secret 
 
- Run the setup script: npm run setup
- Configure your MCP client to use the server 
Installation
- Clone the repository git clone https://github.com/your-username/dbx-mcp-server.git cd dbx-mcp-server
- Install dependencies and build npm install npm run build
- Run the setup script npm run setup
- Add to MCP settings - Add the following to your MCP settings file: { "mcpServers": { "dbx": { "command": "node", "args": ["/path/to/dbx-mcp-server/build/index.js"] } } }
Authentication
The server uses OAuth 2.0 with PKCE for secure authentication with Dropbox.
Environment Variables
Required:
- DROPBOX_APP_KEY: Your Dropbox app's key
- DROPBOX_APP_SECRET: Your Dropbox app's secret
- DROPBOX_REDIRECT_URI: OAuth redirect URI
- TOKEN_ENCRYPTION_KEY: 32+ character key for token encryption
Optional:
- TOKEN_REFRESH_THRESHOLD_MINUTES: Minutes before expiration to refresh token (default: 5)
- MAX_TOKEN_REFRESH_RETRIES: Maximum number of refresh attempts (default: 3)
- TOKEN_REFRESH_RETRY_DELAY_MS: Delay between refresh attempts in ms (default: 1000)
Available Tools
File Operations
- list_files: List files in a directory
- upload_file: Upload a file
- download_file: Download a file
- safe_delete_item: Safely delete with recycle bin support
- create_folder: Create a new folder
- copy_item: Copy a file or folder
- move_item: Move or rename a file/folder
Metadata and Search
- get_file_metadata: Get file/folder metadata
- search_file_db: Search files and folders
- get_sharing_link: Create sharing links
- get_file_content: Get file contents
Account Operations
- get_account_info: Get account information
Usage Examples
Testing
Run the test suite:
Tests verify all operations including authentication, file operations, and error handling.
Test Structure
The test suite is organized into several modules:
- Dropbox Operations: Tests for basic file operations (upload, download, list, etc.) 
- Account Operations: Tests for accessing account information 
- Search and Delete: Tests for search functionality and safe deletion with recycle bin support 
- Resource System: Tests for the MCP resource system integration 
Handling Test Data
The tests use dynamically generated file and folder names based on timestamps to avoid conflicts. Test data is automatically cleaned up after test execution.
Running Specific Tests
To run a specific test file or test group:
Troubleshooting Tests
If tests fail with timing or authentication issues:
- Check that the mock implementations in - tests/setup.tsmatch your test expectations
- Ensure test helpers are correctly configured 
- For Jest scope errors, avoid referencing imported variables in mock factory functions 
Development
Built with:
- TypeScript 
- Model Context Protocol SDK 
- Dropbox SDK v10.34.0 
- Dropbox API v2 
License
MIT License
Copyright (c) 2025 MCP Server Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
This server cannot be installed
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
A Model Context Protocol server that enables AI applications to interact with Dropbox, providing tools for file operations, metadata retrieval, searching, and account management through Dropbox's API.
- Table of Contents
- Quick Start
- Installation
- Authentication
- Available Tools
- Usage Examples
- Testing
- Development
- License
Related Resources
Related MCP Servers
- -security-license-qualityEnables interaction with Dropbox through the Model Context Protocol, providing tools for file management, uploads, downloads, deletion, and token updates with secure runtime authentication.Last updated -1120MIT License
- -security-license-qualityA comprehensive Model Context Protocol server implementation that enables AI assistants to interact with file systems, databases, GitHub repositories, web resources, and system tools while maintaining security and control.Last updated -361
- -security-license-qualityA Model Context Protocol server that provides tools for interacting with Docker images, containers, and registries, enabling AI assistants to search, analyze, and manage Docker resources through a standardized interface.Last updated -MIT License