Aerostack
electrical_services

Dropbox MCP Server — Hosted Storage Integration

MCP Server language Hosted language Public

List, upload, download, search, move, and manage files and folders in Dropbox — AI-native cloud storage for any agent.

aerostack @aerostack verified
v0.1.0 MIT Updated Jun 28, 2026
robot_2

Use with AI AssistantsMCP

Connect Claude, Cursor, or any MCP-compatible client — then call tools directly

① Add This MCP Server

Paste into your AI client config — then all its tools are available instantly.

.claude/mcp.json
{
  "mcpServers": {
    "dropbox": {
      "url": "https://mcp.aerostack.dev/s/aerostack/mcp-dropbox",
      "headers": {
        "Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
      }
    }
  }
}

Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.

② Call a Tool

Ask your AI assistant to call a specific tool, or send raw JSON-RPC:

+4 more

Natural Language Prompt

“Use the _ping tool to verify dropbox connectivity by fetching the current account info. used internally by aerostack to validate credentials

Using a Workspace?

Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.

add_circleAdd to Workspace

description Overview

mcp-dropbox — Dropbox MCP Server

List, upload, download, search, move, and manage files and folders in Dropbox — AI-native cloud storage for any agent.

Give your AI agents full access to Dropbox. Browse folders, search files, upload and download content, create shared links, and organize your file tree — all through natural language.

Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-dropbox


What You Can Do

  • Browse files and folders with pagination and recursive listing
  • Download text files inline or get temporary links for binary files
  • Upload text, JSON, CSV, and other content to any path
  • Search across your entire Dropbox by name or content
  • Create, move, rename, and delete files and folders
  • Generate shared links for any file or folder
  • Inspect file metadata (size, modified date, content hash)

Available Tools

Tool Description
_ping Verify Dropbox connectivity by fetching account info
list_folder List files and folders at a path with pagination
get_file_metadata Get metadata for a file or folder (size, modified, hash)
download_file Download text inline or get a temporary link for binary files
upload_file Upload text content to a file (create or overwrite)
search Search files and folders by name or content
create_folder Create a new folder at a given path
delete Delete a file or folder and all its contents
move Move or rename a file or folder
get_shared_link Get or create a shared link for a file or folder

Configuration

Variable Required Description How to Get
DROPBOX_ACCESS_TOKEN Yes Dropbox OAuth2 access token with files and sharing scopes dropbox.com/developers → Create App → Generate access token (or use OAuth flow for long-lived tokens)

Recommended scopes: files.metadata.read, files.metadata.write, files.content.read, files.content.write, sharing.read, sharing.write

Quick Start

Add to Aerostack Workspace
  1. Go to aerostack.dev → Your Project → MCPs
  2. Search for "Dropbox" and click Add to Workspace
  3. Add DROPBOX_ACCESS_TOKEN under Project → Secrets
Example Prompts
"List all files in my Documents folder"
"Search for any PDF files containing 'quarterly report'"
"Upload this meeting notes text to /Notes/2026-03-24.md"
"Download the config.json from /Projects/my-app/"
"Create a shared link for /Reports/Q1-2026.pdf"
"Move /Drafts/proposal.docx to /Final/proposal-v2.docx"
"Create a new folder at /Projects/new-client"
"Delete the old backups folder at /Archive/2024"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-dropbox \
  -H 'Content-Type: application/json' \
  -H 'X-Mcp-Secret-DROPBOX-ACCESS-TOKEN: sl.B...' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_folder","arguments":{"path":""}}}'

Security Notes

  • Dropbox access token is injected at the Aerostack gateway layer — never stored in the worker
  • Temporary download links from download_file expire after 4 hours
  • Text files under 1MB are returned inline; larger or binary files return a temporary download URL
  • Consider using scoped access tokens restricted to specific folders for production use

License

MIT

terminal Tools (10)

Available tools on this MCP server. Each tool can be called directly from any AI agent.

terminal
_ping #1

Verify Dropbox connectivity by fetching the current account info. Used internally by Aerostack to validate credentials.

terminal
list_folder #2

List files and folders at a given Dropbox path with metadata (name, type, size, modified date). Supports pagination via cursor.

terminal
get_file_metadata #3

Get metadata for a file or folder — name, path, size, modified date, content hash, and sharing info

terminal
download_file #4

Download a file from Dropbox. Returns text content inline for text files under 1MB; returns a temporary link for binary or large files.

terminal
upload_file #5

Upload text or JSON content to a Dropbox file. Creates or overwrites the file at the specified path.

terminal
search #6

Search for files and folders in Dropbox by name or content. Returns matching paths with metadata.

terminal
create_folder #7

Create a new folder at the specified Dropbox path

terminal
delete #8

Delete a file or folder (and all its contents) from Dropbox

terminal
move #9

Move or rename a file or folder in Dropbox

terminal
get_shared_link #10

Get or create a shared link for a Dropbox file or folder. Returns an existing link if one exists, otherwise creates a new one.

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category Storage
terminal Tools 10

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-dropbox

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

Frequently asked questions

What is the Dropbox MCP server and what can it do? +

The Dropbox MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `list_folder`, `get_file_metadata`, `download_file`, `upload_file`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.

Is the Dropbox MCP server hosted, or do I have to run it myself? +

It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.

Which AI agents and editors can use the Dropbox MCP server? +

Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Dropbox MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.

How do I install the Dropbox MCP server in Claude Desktop? +

Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-dropbox": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-dropbox"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.

How do I use the Dropbox MCP server in Cursor? +

In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-dropbox", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-dropbox"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.

Does Dropbox MCP require authentication? +

Yes. Dropbox requires authentication. Check the MCP's documentation for the required credentials.