Dropbox MCP Server

Filesystemstdiov0.2.0
代码仓库

MCP server for Dropbox cloud storage. Lets AI agents list folders, upload and download files, search content, move and delete items, and create shared links via the Dropbox API with OAuth. Useful for document workflows, backups, and giving agents access to files stored in Dropbox.

连接

将此配置添加到 .claude/mcp.json

{
  "mcpServers": {
    "dropbox": {
      "command": "npx",
      "args": [
        "-y",
        "@dropbox/mcp-server"
      ],
      "env": {
        "DROPBOX_ACCESS_TOKEN": "<YOUR_DROPBOX_ACCESS_TOKEN>"
      }
    }
  }
}

工具 (2)

list_folder

List files and subfolders within a Dropbox folder path.

{
  "type": "object",
  "required": [
    "path"
  ],
  "properties": {
    "path": {
      "type": "string",
      "description": "Folder path (empty string for the root)"
    }
  }
}

search_files

Search Dropbox for files and folders matching a query.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Dropbox (@dropbox)
代码仓库
https://github.com/dropbox/dropbox-mcp-server
许可证
MIT
版本
0.2.0
星标
260
最后更新
2026年7月9日