Dbx MCP Server

A Model Context Protocol server for Dropbox integration

Local serverstdioTypeScript

What is the Dbx MCP server?

If you want an AI assistant working directly with Dbx, the dbx mcp server is the bridge. A Model Context Protocol server for Dropbox integration.

What Dbx does

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.

Installing the dbx mcp server

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.

Configuration

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.

Where it fits

File and storage servers are what separate an assistant that talks about your documents from one that actually works with them. Dbx 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.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by Albiemark, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the dbx mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

How to install the Dbx MCP server

{
     "mcpServers": {
       "dbx": {
         "command": "node",
         "args": ["/path/to/dbx-mcp-server/build/index.js"]
       }
     }
   }

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
DROPBOX_APP_KEYCredential the server authenticates with.Yes
DROPBOX_APP_SECRETCredential the server authenticates with.Yes
TOKEN_ENCRYPTION_KEYCredential the server authenticates with.Yes

Frequently asked questions

It connects Dbx to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Dbx directly.