Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
29 lines
907 B
TOML
29 lines
907 B
TOML
id = "dropbox"
|
|
name = "Dropbox"
|
|
description = "Access and manage Dropbox files and folders through the MCP server"
|
|
category = "productivity"
|
|
icon = "📦"
|
|
tags = ["files", "storage", "cloud-storage", "sync", "sharing"]
|
|
|
|
[transport]
|
|
type = "stdio"
|
|
command = "npx"
|
|
args = ["@modelcontextprotocol/server-dropbox"]
|
|
|
|
[[required_env]]
|
|
name = "DROPBOX_ACCESS_TOKEN"
|
|
label = "Dropbox Access Token"
|
|
help = "A short-lived or long-lived access token from the Dropbox App Console"
|
|
is_secret = true
|
|
get_url = "https://www.dropbox.com/developers/apps"
|
|
|
|
[health_check]
|
|
interval_secs = 60
|
|
unhealthy_threshold = 3
|
|
|
|
setup_instructions = """
|
|
1. Go to the Dropbox App Console (https://www.dropbox.com/developers/apps) and create a new app or select an existing one.
|
|
2. Under the 'OAuth 2' section, generate an access token with the required permissions.
|
|
3. Paste the access token into the DROPBOX_ACCESS_TOKEN field above.
|
|
"""
|