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 URL | https://api.dropboxapi.com/2/ |
| API version | 2 |
| Auth | OAuth 2.0 with PKCE. Short-lived access tokens (4 hours) + refresh tokens. Scoped permissions via App Console. |
| Token URL | https://api.dropboxapi.com/oauth2/token |
| Scopes | files.content.read, files.content.write, files.metadata.read, sharing.read, account_info.read |
| Request body | application/json (RPC), application/octet-stream (upload/download) |
| Pagination | Cursor-based: has_more + cursor in response. Pass cursor to /files/list_folder/continue. |
| Rate limit | Not rate-limited per se, but 409 rate_limit errors for write-heavy operations. Automatic retry with Retry-After. |
| Error format | JSON: {"error_summary":"path/not_found/...","error":{".tag":"path","path":{".tag":"not_found"}}} |
Key endpoints
| Method | Path | Description |
POST | /files/list_folder | List files in a folder |
POST | /files/upload | Upload file (up to 150MB) |
POST | /files/download | Download a file |
POST | /sharing/list_shared_links | List shared links |
Quickstart
POST /2/files/list_folder
Authorization: Bearer {token}
Content-Type: application/json
{"path":"/Documents","recursive":false,"limit":100}
Agent pitfalls & tips
- All endpoints use POST (even reads) โ Dropbox API is RPC-style, not REST.
- File paths start with '/' and are case-insensitive. Root is '' (empty string).
- Upload uses content-upload endpoint (content.dropboxapi.com) with Dropbox-API-Arg header.
- Access tokens expire in 4 hours โ always implement refresh token flow.
- Error tags use dot notation: error.".tag" โ parse carefully.
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.