IntegrateIntegrate
Integrations

Dropbox Paper Integration

Create, update, and export Dropbox Paper documents

The Dropbox Paper integration provides access to create, update, and export Dropbox Paper documents through the Integrate MCP server.

Installation

The Dropbox Paper integration is included with the SDK:

import { paperIntegration } from "integrate-sdk/server";

Setup

1. Create a Dropbox Paper OAuth App

  1. Go to Dropbox Developer Portal
  2. Create a new OAuth application
  3. Configure your redirect URI
  4. Note your Client ID and Client Secret

2. Configure the Integration on Your Server

Add the Dropbox Paper integration to your server configuration. The integration automatically reads PAPER_CLIENT_ID and PAPER_CLIENT_SECRET from your environment variables:

import { createMCPServer, paperIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    paperIntegration({
      scopes: ["account_info.read", "files.metadata.read", "files.content.read", "files.content.write"], // Optional
    }),
  ],
});

You can override the environment variables by passing explicit values:

paperIntegration({
  clientId: process.env.CUSTOM_PAPER_ID,
  clientSecret: process.env.CUSTOM_PAPER_SECRET,
      scopes: ["account_info.read", "files.metadata.read", "files.content.read", "files.content.write"], // Optional
});

3. Client-Side Usage

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

import { client } from "integrate-sdk";

await client.authorize("paper");
const result = await client.paper.createDoc({
  path: "value",
});

console.log(result);

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

import { createMCPClient, paperIntegration } from "integrate-sdk";

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

Configuration Options

Prop

Type

Default Scopes

These defaults are applied unless you override scopes in the integration config:

  • account_info.read
  • files.metadata.read
  • files.content.read
  • files.content.write

Tools

paper_create_doc

Create doc

Prop

Type

paper_update_doc

Update doc

Prop

Type

paper_export_doc

Export doc

Prop

Type

Notes

  • Category: Productivity
  • Authentication mode: OAuth

On this page