MCP.so
登录

dbx-mcp-server

@MCP-Mirror

关于 dbx-mcp-server

Mirror of

基本信息

分类

其他

许可证

MIT license

运行时

node

传输方式

stdio

发布者

MCP-Mirror

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

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

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is dbx-mcp-server?

dbx-mcp-server is a Model Context Protocol (MCP) server that integrates with Dropbox, enabling MCP-compatible clients to read, write, search, and manage files and folders via Dropbox’s public API. It is an independent, third-party project not affiliated with Dropbox.

How to use dbx-mcp-server?

Clone the repo, run npm install and npm run build, then npm run setup to configure authentication. Add the server to your MCP client’s settings file with command: "node" and args: ["/path/to/build/index.js"]. Use the provided tools (e.g., list_files, upload_file) from within your MCP client.

Key features of dbx-mcp-server?

  • File operations: list, upload, download, delete, create folders
  • Copy, move, and rename files and folders
  • Get metadata and search files and folders
  • Create shareable links to files
  • Retrieve account information

Use cases of dbx-mcp-server?

  • List and navigate a Dropbox directory tree from an AI assistant
  • Upload and download files programmatically via natural language commands
  • Search for files by name or path within a Dropbox account
  • Generate sharing links for quick collaboration
  • Manage folders and safely delete items with recycle bin support

FAQ from dbx-mcp-server

What authentication does dbx-mcp-server use?

It uses OAuth 2.0 with PKCE. You must create a Dropbox app, set required permissions, and provide DROPBOX_APP_KEY, DROPBOX_APP_SECRET, and DROPBOX_REDIRECT_URI environment variables.

What permissions must the Dropbox app have?

The app needs files.metadata.read, files.content.read, files.content.write, sharing.write, and account_info.read.

Is dbx-mcp-server affiliated with Dropbox?

No. The project is explicitly not affiliated with, endorsed by, or sponsored by Dropbox.

How are tokens secured?

Tokens are encrypted using a TOKEN_ENCRYPTION_KEY (32+ characters) and can be auto-refreshed with configurable thresholds and retries.

What runtime does it require?

The server runs on Node.js and is built with TypeScript, the MCP SDK, and Dropbox SDK v10.34.0.

评论

其他 分类下的更多 MCP 服务器