> ## Documentation Index
> Fetch the complete documentation index at: https://api-docs.ollang.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Dropbox

> Manage translation files stored in Dropbox with Ollang MCP for seamless document localization.

# Ollang MCP + Dropbox

<Warning>
  The Dropbox MCP Server is a third-party project and is not developed, maintained, or affiliated with Ollang or Dropbox. Please exercise caution when connecting to any third-party MCP server and review its source code and permissions before use.
</Warning>

Use the [Dropbox MCP Server](https://help.dropbox.com/integrations/connect-dropbox-mcp-server) with Ollang MCP to pull documents from Dropbox, translate them, and save results back — all through your AI assistant.

## Why Dropbox + Ollang?

Dropbox is a widely used file storage platform for teams. By connecting both MCP servers, your AI assistant can:

* Pull source documents (PDFs, DOCX, subtitles) from Dropbox
* Upload files directly to Ollang for translation
* Save translated files back to organized Dropbox folders
* Manage localization file structures

## Setup

Dropbox offers an official remote MCP server — no local installation required.

<Tabs>
  <Tab title="Claude Desktop">
    ```json claude_desktop_config.json theme={null}
    {
      "mcpServers": {
        "ollang": {
          "url": "https://mcp.ollang.com/mcp"
        },
        "dropbox": {
          "url": "https://mcp.dropbox.com/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="Claude Code">
    ```json .mcp.json theme={null}
    {
      "mcpServers": {
        "ollang": {
          "type": "sse",
          "url": "https://mcp.ollang.com/mcp"
        },
        "dropbox": {
          "type": "sse",
          "url": "https://mcp.dropbox.com/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="Cursor">
    ```json .cursor/mcp.json theme={null}
    {
      "mcpServers": {
        "ollang": {
          "url": "https://mcp.ollang.com/mcp"
        },
        "dropbox": {
          "url": "https://mcp.dropbox.com/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="Devin">
    Add both servers in **Settings > Integrations > MCP Servers** in the Devin web app:

    ```json theme={null}
    {
      "mcpServers": {
        "ollang": {
          "url": "https://mcp.ollang.com/mcp",
          "transport": "sse"
        },
        "dropbox": {
          "url": "https://mcp.dropbox.com/mcp",
          "transport": "sse"
        }
      }
    }
    ```
  </Tab>

  <Tab title="Replit">
    ```json .replit-mcp.json theme={null}
    {
      "mcpServers": {
        "ollang": {
          "url": "https://mcp.ollang.com/mcp",
          "transport": "sse"
        },
        "dropbox": {
          "url": "https://mcp.dropbox.com/mcp",
          "transport": "sse"
        }
      }
    }
    ```
  </Tab>

  <Tab title="Lovable">
    Add both servers via **Settings > Integrations > MCP Servers** in Lovable, or use a config file:

    ```json lovable.json theme={null}
    {
      "mcp": {
        "servers": {
          "ollang": {
            "url": "https://mcp.ollang.com/mcp",
            "transport": "sse"
          },
          "dropbox": {
            "url": "https://mcp.dropbox.com/mcp",
            "transport": "sse"
          }
        }
      }
    }
    ```
  </Tab>
</Tabs>

<Info>
  The Dropbox remote MCP server uses OAuth authentication. On first connection, you'll be prompted to authorize access in your browser.
</Info>

## Dropbox MCP Capabilities

| Capability   | Description                            |
| ------------ | -------------------------------------- |
| Browse files | Navigate folders and list files        |
| Search       | Find files by name or content          |
| Download     | Retrieve file contents                 |
| Upload       | Save files to Dropbox                  |
| Manage       | Create folders, move, and rename files |

## Example Workflows

### Translate documents from Dropbox

```
Find all PDF files in my Dropbox folder "/Marketing/English". Upload each
one to Ollang and create document translation orders for French, Spanish,
and German. Save the order IDs to a text file in "/Marketing/Translations".
```

### Subtitle file workflow

```
Download the file "product-demo.srt" from my Dropbox, read it using Ollang's
subtitle parser, then upload it to Ollang and create subtitle translation
orders for Japanese and Korean.
```

### Organized localization pipeline

```
For each file in Dropbox "/Content/Source":
1. Upload to Ollang for document translation into French, German, and Spanish
2. When translations complete, download them
3. Save to Dropbox folders: /Content/FR, /Content/DE, /Content/ES
```
