Dropbox
live DataDropbox MCP Pack — wraps the Dropbox API v2
5 tools
0ms auth
free tier 50 calls/day
Tools
dropbox_list_folder List files and folders in a Dropbox directory.
No parameters required.
Try it
Response
dropbox_search Search for files and folders in Dropbox by name or content.
No parameters required.
Try it
Response
dropbox_get_metadata Get metadata for a file or folder in Dropbox.
No parameters required.
Try it
Response
dropbox_download Download a file from Dropbox. Returns the file content as text and its metadata.
No parameters required.
Try it
Response
dropbox_create_folder Create a new folder in Dropbox.
No parameters required.
Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/dropbox/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/dropbox/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"dropbox_list_folder","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("dropbox_list_folder", {}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("dropbox mcp pack — wraps the dropbox api v2");