Skip to main content
Glama
vmproductions631-tech

dropbox-mcp

dropbox-mcp

A Model Context Protocol server that gives an LLM agent read/write access to a Dropbox account — personal or Business/Team — over the Dropbox API v2.

The problem

Dropbox's own desktop client solves file syncing. It does not solve giving an AI agent controlled access to an account it doesn't have a local copy of. An agent that can only see synced folders can't search a 2 TB team archive, can't mint a share link, and can't read a file it was never given.

This server closes that gap. It talks to the Dropbox HTTP API directly, so it works against the whole account without syncing a single byte to disk, and it exposes that access as a fixed set of MCP tools rather than a raw HTTP client — the agent gets dropbox_search, not fetch.

Related MCP server: Dropbox MCP Server

Architecture

Four tool modules (files, search, sharing, account) register themselves against a single McpServer speaking MCP over stdio. Every module funnels through one HTTP client that owns the two things the Dropbox API makes annoying: the OAuth token lifecycle and the team-space namespace. Modules can be disabled individually at startup via DROPBOX_DISABLED_MODULES, so a deployment that shouldn't be able to create public share links simply doesn't register that module — the capability is absent, not merely discouraged.

  MCP host (Claude, etc.)
          | stdio (JSON-RPC)
  +-------v--------------------------------------+
  |  index.ts   module registry / stdio transport|
  +-------+--------------------------------------+
          |
  +-------v-------+ +--------+ +---------+ +---------+
  |  tools/files  | | search | | sharing | | account |
  +-------+-------+ +---+----+ +----+----+ +----+----+
          |             |           |           |
          +------+------+-----------+-----------+
                 |
        +--------v-----------------------------------+
        |  client.ts                                 |
        |   - refresh-token -> access-token cache     |
        |   - 401 retry with a forced refresh         |
        |   - Dropbox-API-Path-Root resolution        |
        |   - ASCII-safe Dropbox-API-Arg encoding     |
        +--------+-----------------------------------+
                 |
      RPC api.dropboxapi.com   Content content.dropboxapi.com

Two endpoint families, deliberately kept as separate functions: RPC endpoints are JSON-in/JSON-out, while Content endpoints put their arguments in an HTTP header and use the body for file bytes. Collapsing them into one generic request() would have meant a parameter that silently changes where the arguments go, so they stay apart.

The genuinely hard part

On a Dropbox Business team, the API defaults to the member's home namespace. Every team folder — which is where the actual shared work lives — sits in the team's root namespace instead and is simply invisible. list_folder on "" returns the member's private files and nothing else, with no error and no hint that most of the account is missing. It looks like a permissions problem and isn't one.

The fix is to send a Dropbox-API-Path-Root header pointing at the team root namespace, whose id you get from users/get_current_account. That introduces a recursion trap: the generic RPC helper attaches the path-root header to every call, so having it resolve the namespace by calling get_current_account through itself means the header resolution calls the header resolution forever. resolveRootNamespaceId() therefore issues a deliberately bare fetch that bypasses the helper, and the result is memoised so the extra round trip happens once per process (src/client.ts).

A smaller version of the same class of bug: Content endpoints pass their arguments in Dropbox-API-Arg, and HTTP headers are ASCII. Any file with an accented character or an emoji in its name throws inside fetch rather than returning an API error. apiArg() escapes every non-ASCII code point to \uXXXX before the header is built.

What I'd do differently

  1. No tests. This was built and verified by hand against a live account. The token-refresh path, the 401 retry, and the chunked upload boundary conditions are exactly the code that should have been driven by tests with a mocked transport — they're the parts that fail rarely and expensively.

  2. The path-root cache is per-process and never invalidated. Fine for a stdio server that a host restarts freely; wrong for anything long-lived where a user could be moved between teams.

  3. dropbox_delete is exposed with no confirmation affordance. Dropbox's own retention makes it recoverable, but a destructive tool should signal that in its schema rather than relying on the host to ask.

  4. Errors are shaped into strings. Returning a structured error code alongside the message would let an agent branch on "rate limited" versus "not found" without parsing prose.

Setup

Requires Node 20+ (developed on 24) and a Dropbox account.

1. Create a Dropbox app

  1. Go to https://www.dropbox.com/developers/apps and choose Create app.

  2. Pick Scoped access and Full Dropbox access.

  3. On Permissions, enable account_info.read, files.metadata.read, files.metadata.write, files.content.read, files.content.write, sharing.read, sharing.write, then Submit.

  4. On Settings, copy the App key and App secret.

2. Build and authorise

git clone <this-repo>
cd dropbox-mcp
npm install
npm run build

cp .env.example .env      # fill in DROPBOX_APP_KEY and DROPBOX_APP_SECRET
npm run auth              # prints DROPBOX_REFRESH_TOKEN — paste it into .env

npm run auth prints a consent URL, takes the code you paste back, and exchanges it for a refresh token. The server trades that for short-lived access tokens on its own from then on.

3. Register with an MCP host

{
  "mcpServers": {
    "dropbox": {
      "command": "node",
      "args": ["/absolute/path/to/dropbox-mcp/dist/index.js"],
      "env": {
        "DROPBOX_APP_KEY": "your-app-key",
        "DROPBOX_APP_SECRET": "your-app-secret",
        "DROPBOX_REFRESH_TOKEN": "your-refresh-token"
      }
    }
  }
}

Restart the host and ask it something like "What's my Dropbox space usage?".

To exercise the server without a host:

npm run inspect           # @modelcontextprotocol/inspector

Tools

filesdropbox_list_folder, dropbox_get_metadata, dropbox_create_folder, dropbox_move, dropbox_copy, dropbox_delete, dropbox_get_temporary_link, dropbox_read_file, dropbox_upload (auto-chunks large files through upload sessions).

searchdropbox_search across filenames and content, account-wide or scoped to a folder.

sharingdropbox_create_shared_link, dropbox_list_shared_links, dropbox_get_shared_link_metadata, dropbox_revoke_shared_link.

accountdropbox_get_current_account, dropbox_get_space_usage.

Configuration

All configuration is environment variables; see .env.example for the full annotated list, including the namespace control (DROPBOX_PATH_ROOT), the read-size cap (DROPBOX_MAX_READ_BYTES), the upload chunk size, and the team-app impersonation headers.

Licence

MIT — see LICENSE.

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    B
    quality
    D
    maintenance
    Provides read access to Dropbox files with advanced search and content extraction capabilities. Supports browsing, reading, and searching within various file types including PDFs, DOCX, and text files.
    5
  • F
    license
    A
    quality
    Not graded
    maintenance
    A local MCP server that enables Claude to manage Dropbox accounts through tools for file manipulation, searching, and sharing. It supports operations such as listing folders, moving files, creating shared links, and monitoring storage usage via natural language commands.
    10
  • A
    license
    A
    quality
    A
    maintenance
    Dropbox MCP server to recover deleted files, list revisions, search content, and force-download cloud-only files via server-side API.
    11
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Exposes Databricks REST API as MCP tools for managing clusters, jobs, notebooks, SQL queries, Unity Catalog, and more. Enables AI agents to interact with Databricks workspaces through natural language.
    49
    MIT

View all related MCP servers

Related MCP Connectors

  • Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.

  • Shared long-term memory vault for AI agents with 20 MCP tools.

  • OCR, transcription, file extraction, and image generation for AI agents via MCP.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vmproductions631-tech/dropbox-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server