Skip to Content
ResourcesIntegrationsProductivity & DocsDropbox

Dropbox

Service domainCLOUD STORAGE
Dropbox icon
Arcade Optimized

Arcade tools designed for LLMs to interact with Dropbox

Author:Arcade
Version:1.1.2
Auth:User authorization via the Dropbox auth provider
3tools

Arcade's Dropbox toolkit lets LLMs interact with a user's Dropbox account via OAuth 2.0. It covers file download and folder/file discovery through a small, focused set of tools.

Capabilities

  • File access: Download files by path or ID (file_path and file_id are interchangeable; one must be supplied).
  • Folder listing: Enumerate all items (files and folders) within a given folder path, with cursor-based pagination; note that individual items may appear across multiple pages.
  • Search: Query files and folders by keyword within a path, returning up to 10,000 cumulative results across paginated requests via a cursor token; same cursor-only pagination rule applies.

OAuth

This toolkit authenticates via OAuth 2.0 through the Dropbox provider. See the Arcade Dropbox auth provider docs for setup details.

Available tools(3)

3 of 3 tools
Operations
Behavior
Tool nameDescriptionSecrets
Downloads the specified file. Note: either one of `file_path` or `file_id` must be provided.
Provides a dictionary containing the list of items in the specified folder path. Note 1: when paginating, it is not necessary to provide any other argument besides the cursor. Note 2: when paginating, any given item (file or folder) may be returned in multiple pages.
Returns a list of items in the specified folder path matching the search criteria. Note 1: the Dropbox API will return up to 10,000 (ten thousand) items cumulatively across multiple pagination requests using the cursor token. Note 2: when paginating, it is not necessary to provide any other argument besides the cursor. Note 3: when paginating, any given item (file or folder) may be returned in multiple pages.
Last updated on