
Connects to Dropbox API v2 through Pipeworx's gateway infrastructure. You get five core tools: list folder contents, search by name or content, pull metadata like size and revision info, download files as text, and create folders. Part of a larger 673-source gateway, so you can either hit the standalone Dropbox endpoint or use the full Pipeworx hub and query with natural language through ask_pipeworx instead of calling tools directly. Useful when you need Claude to browse your Dropbox structure, locate files without exact paths, or pull down content for processing. Uses streamable HTTP transport rather than stdio.
Public tool metadata for what this MCP can expose to an agent.
DROPBOX_CREATE_FILE_REQUESTTool to create a new file request in Dropbox. Use when you need to request files from others by generating a unique link for uploads to a specified Dropbox folder, optionally with a deadline.4 paramsTool to create a new file request in Dropbox. Use when you need to request files from others by generating a unique link for uploads to a specified Dropbox folder, optionally with a deadline.
deadlineobjectdestinationstringopenbooleantitlestringDROPBOX_CREATE_FOLDERTool to create a new folder at a specified path in Dropbox. Use when you need to organize files by creating a new directory. Requires the 'files.content.write' scope.2 paramsTool to create a new folder at a specified path in Dropbox. Use when you need to organize files by creating a new directory. Requires the 'files.content.write' scope.
autorenamebooleanpathstringDROPBOX_CREATE_PAPERCreates a new Dropbox Paper document at the specified path using HTML or Markdown content.3 paramsCreates a new Dropbox Paper document at the specified path using HTML or Markdown content.
contentstringimport_formatstringpathstringDROPBOX_DELETE_FILE_OR_FOLDERPermanently deletes the file or folder at the specified path in Dropbox. Use when you need to remove a specific file or folder. Requires the `files.content.write` scope.1 paramsPermanently deletes the file or folder at the specified path in Dropbox. Use when you need to remove a specific file or folder. Requires the `files.content.write` scope.
pathstringDROPBOX_GET_ABOUT_METool to get information about the current user's Dropbox account. Use when you need to retrieve account details like email, name, or account type.Tool to get information about the current user's Dropbox account. Use when you need to retrieve account details like email, name, or account type.
No parameter schema in public metadata yet.
DROPBOX_GET_TEMPORARY_LINKTool to get a one-click temporary (expiring) download link. Use when you need to share a Dropbox file directly without proxying content through this service. Requires `files.content.read` scope.1 paramsTool to get a one-click temporary (expiring) download link. Use when you need to share a Dropbox file directly without proxying content through this service. Requires `files.content.read` scope.
pathstringDROPBOX_LIST_FILES_IN_FOLDERTool to list files and folders in a specified Dropbox directory. Use when you need to see the contents of a folder, including subfolders if recursive is true.6 paramsTool to list files and folders in a specified Dropbox directory. Use when you need to see the contents of a folder, including subfolders if recursive is true.
include_deletedbooleaninclude_media_infobooleaninclude_non_downloadable_filesbooleanlimitintegerpathstringrecursivebooleanDROPBOX_LIST_FOLDERSRetrieves a list of folders, files, and deleted entries from a specified Dropbox path.4 paramsRetrieves a list of folders, files, and deleted entries from a specified Dropbox path.
include_deletedbooleanlimitintegerpathstringrecursivebooleanDROPBOX_MOVE_FILE_OR_FOLDERMove file or folder5 paramsMove file or folder
allow_ownership_transferbooleanallow_shared_folderbooleanautorenamebooleanfrom_pathstringto_pathstringDROPBOX_READ_FILEDownloads a file from the specified Dropbox path, requiring `files.content.read` scope.1 paramsDownloads a file from the specified Dropbox path, requiring `files.content.read` scope.
pathstringDROPBOX_SEARCH_FILE_OR_FOLDERTool to search for files and folders in Dropbox. Use when you need to find an item by name or content, optionally within a specific path or with other filters, and paginate through results. Example: Search for 'report.docx' in the '/finance' folder.2 paramsTool to search for files and folders in Dropbox. Use when you need to find an item by name or content, optionally within a specific path or with other filters, and paginate through results. Example: Search for 'report.docx' in the '/finance' folder.
optionsobjectquerystringDROPBOX_UPLOAD_FILEUploads a file to a specified path in the user's Dropbox, with options for handling existing files.6 paramsUploads a file to a specified path in the user's Dropbox, with options for handling existing files.
autorenamebooleancontentstringmodestringmutebooleanpathstringstrict_conflictbooleanDropbox MCP Pack — wraps the Dropbox API v2
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
| Tool | Description |
|---|---|
dropbox_list_folder | List files and folders in a Dropbox directory. Returns names, types, sizes, and modification dates. Use when browsing folder contents or checking what's stored at a path. |
dropbox_search | Search Dropbox for files and folders by name or content. Returns matching paths, file types, and metadata. Use when you need to find a file without knowing its exact location. |
dropbox_get_metadata | Get detailed metadata for a file or folder: size, modified date, ID, sharing status, and revision info. Use before downloading or modifying to inspect properties. |
dropbox_download | Download a file from Dropbox and return its content as text plus metadata (size, type, modified date). Use to retrieve file contents for processing or inspection. |
dropbox_create_folder | Create a new folder in Dropbox at a specified path. Returns folder metadata. Use to organize files or set up directory structures. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"dropbox": {
"url": "https://gateway.pipeworx.io/dropbox/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/dropbox/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Dropbox data" })
The gateway picks the right tool and fills the arguments automatically.
MIT