A Model Context Protocol server for Dropbox integration
Dropbox mcp server connects Dropbox to AI assistants that speak the Model Context Protocol. A Model Context Protocol server for Dropbox integration.
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.
The server is distributed via npm as npm, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.
Before the server will start you need to supply 3 environment variables: DROPBOX_APP_KEY, DROPBOX_APP_SECRET, TOKEN_ENCRYPTION_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.
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 desired permissions for the actions you will be using, for example: - files.metadata.read - files.content.read - files.content.write - sharing.write -
File and storage servers are what separate an assistant that talks about your documents from one that actually works with them. Dropbox sits in that group. Worth comparing against the other file systems servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
{
"mcpServers": {
"dbx": {
"command": "node",
"args": ["/path/to/dbx-mcp-server/build/index.js"]
}
}
}Configuration as documented by the project. Restart the client after saving.
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 desired permissions for the actions you will be using, for example: - files.metadata.read - files.content.read - files.content.write - sharing.write -
| Variable | Description | Required |
|---|---|---|
| DROPBOX_APP_KEY | Credential the server authenticates with. | Yes |
| DROPBOX_APP_SECRET | Credential the server authenticates with. | Yes |
| TOKEN_ENCRYPTION_KEY | Credential the server authenticates with. | Yes |
Scoped local file access — read, write, search and reorganise files in directories you explicitly allow.
Search and read your Drive — Docs, Sheets and files become context your assistant can actually use.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Build a programmable telecommunications stack for connecting telephony services with the Internet via a cloud-based utility.
Chat with your second brain — search, read and write vault notes through the Local REST API.
Connects AI models to an Obsidian knowledge base for direct access and manipulation of notes and folders.