Overview
DBX-MCP-Server is a Model Context Protocol (MCP) server that integrates with Dropbox, enabling MCP-compatible clients to interact with Dropbox through a set of powerful tools.
To use DBX-MCP-Server, clone the repository, install dependencies, register a Dropbox app, and configure your MCP client to use the server.
- Integration with Dropbox's public API - Supports various file operations (list, upload, download, delete) - Metadata retrieval and search capabilities - Secure authentication using OAuth 2.0 with PKCE
- Automating file management tasks in Dropbox.
- Building applications that require Dropbox file interactions.
- Enhancing existing MCP-compatible applications with Dropbox functionality.
Add to your AI client
Use these steps to connect dbx-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"dbx-mcp-server-amgadabdelhafez": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dbx-mcp-server-amgadabdelhafez"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"dbx-mcp-server-amgadabdelhafez": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dbx-mcp-server-amgadabdelhafez"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"dbx-mcp-server-amgadabdelhafez": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dbx-mcp-server-amgadabdelhafez"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"dbx-mcp-server-amgadabdelhafez": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dbx-mcp-server-amgadabdelhafez"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"dbx-mcp-server-amgadabdelhafez": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dbx-mcp-server-amgadabdelhafez"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"dbx-mcp-server-amgadabdelhafez": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-dbx-mcp-server-amgadabdelhafez"
]
}
}
}FAQ
Is DBX-MCP-Server affiliated with Dropbox?
No, it is an independent integration that works with Dropbox's public API.
What programming language is used?
The server is built with TypeScript.
How do I authenticate with Dropbox?
The server uses OAuth 2.0 with PKCE for secure authentication.