---
title: "Dropbox Integration"
description: "Manage Dropbox files, folders, and sharing"
---
The Dropbox integration provides access to manage Dropbox files, folders, and sharing through the Integrate MCP server.

## Installation

The Dropbox integration is included with the SDK:

```typescript
import { dropboxIntegration } from "integrate-sdk/server";
```

## Setup

### 1. Create a Dropbox OAuth App

1. Create an OAuth application for Dropbox
2. Configure your redirect URI
3. Note your Client ID and Client Secret

### 2. Configure the Integration on Your Server

Add the Dropbox integration to your server configuration. The integration automatically reads `DROPBOX_CLIENT_ID` and `DROPBOX_CLIENT_SECRET` from your environment variables:

```typescript
import { createMCPServer, dropboxIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    dropboxIntegration({
    }),
  ],
});
```

You can override the environment variables by passing explicit values:

```typescript
dropboxIntegration({
  clientId: process.env.CUSTOM_DROPBOX_ID,
  clientSecret: process.env.CUSTOM_DROPBOX_SECRET,
});
```

### 3. Client-Side Usage

The default client automatically includes all integrations. You can use it directly:

```typescript
import { client } from "integrate-sdk";

await client.authorize("dropbox");
// Use client.dropbox methods after connecting
```

If you're using a custom client, add the integration to the integrations array:

```typescript
import { createMCPClient, dropboxIntegration } from "integrate-sdk";

const customClient = createMCPClient({
  integrations: [dropboxIntegration()],
});
```

## Configuration Options

<AutoTypeTable
  path="../src/integrations/dropbox.ts"
  name="DropboxIntegrationOptions"
/>


## Tools

### `dropbox_get_current_account`

Get current account

_No parameters._

### `dropbox_get_space_usage`

Get space usage

_No parameters._

### `dropbox_list_folder`

List folder

_No parameters._

### `dropbox_list_folder_continue`

List folder continue

_No parameters._

### `dropbox_get_metadata`

Get metadata

_No parameters._

### `dropbox_search_files`

Search files

_No parameters._

### `dropbox_create_folder`

Create folder

_No parameters._

### `dropbox_delete_path`

Delete path

_No parameters._

### `dropbox_move_path`

Move path

_No parameters._

### `dropbox_copy_path`

Copy path

_No parameters._

### `dropbox_upload_text_file`

Upload text file

_No parameters._

### `dropbox_download_file`

Download file

_No parameters._

### `dropbox_get_temporary_link`

Get temporary link

_No parameters._

### `dropbox_create_shared_link`

Create shared link

_No parameters._

### `dropbox_list_shared_links`

List shared links

_No parameters._

### `dropbox_revoke_shared_link`

Revoke shared link

_No parameters._

## Notes

- Category: Storage
- Authentication mode: OAuth
