BBB
AEO Score: 0.60 / 1.00

Dropbox Business

Cloud Storage
Adequate โ€” Basic agent connectivity available
Agent Ready
Connectable
MCP Type
API Only
Success Rate
๐ŸŸก Medium
Agent Activity
โ— New
Recipes
โ€”

Get Full Integration Guide

Current auth setup, endpoints, rate limits, known pitfalls, and step-by-step recipes โ€” kept fresh from registry checks, curated official-doc guides, and agent reports.

npx @kansei-link/mcp-server

Then use: search_services โ†’ get_service_detail

How to Connect Dropbox Business to an AI Agent

Auth setup

1. Create app at dropbox.com/developers/apps. 2. Set permissions (scopes). 3. Generate access token for testing, or implement OAuth flow. 4. Use Authorization: Bearer {token}.

Key facts

Base URLhttps://api.dropboxapi.com/2/
API version2
AuthOAuth 2.0 with PKCE. Short-lived access tokens (4 hours) + refresh tokens. Scoped permissions via App Console.
Token URLhttps://api.dropboxapi.com/oauth2/token
Scopesfiles.content.read, files.content.write, files.metadata.read, sharing.read, account_info.read
Request bodyapplication/json (RPC), application/octet-stream (upload/download)
PaginationCursor-based: has_more + cursor in response. Pass cursor to /files/list_folder/continue.
Rate limitNot rate-limited per se, but 409 rate_limit errors for write-heavy operations. Automatic retry with Retry-After.
Error formatJSON: {"error_summary":"path/not_found/...","error":{".tag":"path","path":{".tag":"not_found"}}}

Key endpoints

MethodPathDescription
POST/files/list_folderList files in a folder
POST/files/uploadUpload file (up to 150MB)
POST/files/downloadDownload a file
POST/sharing/list_shared_linksList shared links

Quickstart

POST /2/files/list_folder
Authorization: Bearer {token}
Content-Type: application/json

{"path":"/Documents","recursive":false,"limit":100}

Agent pitfalls & tips

Source: curated by KanseiLink from official documentation (docs) and registry checks. Last reviewed: 2026-04-07. Specs change โ€” verify against the official docs before production use.

Frequently Asked Questions

What is Dropbox Business's AEO score? โ–ผ
Dropbox Business has an AEO score of 0.60 and is rated BBB (Basic agent connectivity available). AEO (Agent Engine Optimization) measures how well a SaaS service works with AI agents. Scores range from 0.00 to 1.00, with grades from AAA (best) to D (not agent-ready).
Is Dropbox Business AI-agent-ready? โ–ผ
Dropbox Business is currently connectable for AI agent use. API access is available but no dedicated MCP server has been published yet. For detailed connection guides, auth setup, and known pitfalls, use the KanseiLink MCP tool.
How does Dropbox Business compare to other Cloud Storage services? โ–ผ
In the Cloud Storage category, Dropbox Business is rated BBB. KanseiLink evaluates services based on MCP availability, API quality, documentation, auth-guide clarity, and integration recipe availability (methodology published). Visit the full rankings at kansei-link.com to see how Dropbox Business compares.
How can I integrate Dropbox Business with an AI agent? โ–ผ
The fastest way to integrate Dropbox Business with an AI agent is through KanseiLink MCP. Install it with: npx @kansei-link/mcp-server โ€” then use the search_services and get_service_detail tools to get the current auth setup, endpoints, rate limits, and agent-specific tips. This data is kept fresh from registry checks, curated official-doc guides, and agent reports.
How do I authenticate with Dropbox Business? โ–ผ
OAuth 2.0 with PKCE. Short-lived access tokens (4 hours) + refresh tokens. Scoped permissions via App Console. Setup: 1. Create app at dropbox.com/developers/apps. 2. Set permissions (scopes). 3. Generate access token for testing, or implement OAuth flow. 4. Use Authorization: Bearer {token}.
What are Dropbox Business's API rate limits? โ–ผ
Not rate-limited per se, but 409 rate_limit errors for write-heavy operations. Automatic retry with Retry-After.