Dropbox sign MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Dropbox sign MCP or direct API to request signatures, send documents, track signature status, and automate contract workflows through natural language.

Dropbox sign logoDropbox sign
Api KeyOauth2

Dropbox Sign is an electronic signature platform for sending, signing, and managing legally binding documents online. It streamlines business workflows by making signature collection fast, secure, and effortless.

56 Tools

Try Dropbox sign now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Dropbox sign
Try asking
TOOLS

Supported Tools

Every Dropbox sign action and event your agent gets out of the box.

Invite User to Team

Tool to invite a user to your Team.

Add User to Template

Tool to grant a specified account access to a template.

Bulk create embedded signature request with template

Tool to create a BulkSendJob for embedded templated signature requests.

Bulk send with template

Tool to create a BulkSendJob for templated signature requests.

Cancel Signature Request

Cancels an incomplete signature request.

Create Dropbox Sign Account

Tool to create a new Dropbox Sign account associated with a specified email address.

Create API App

Tool to create a new Dropbox Sign API App.

Create Embedded Signature Request

Tool to create an embedded signature request for signing in an iFrame.

Create Embedded Signature Request With Template

Tool to create an embedded signature request based on a template.

Create Embedded Template Draft

Tool to create an embedded template draft.

Create Embedded Unclaimed Draft with Template

Tool to create an embedded unclaimed draft using saved templates.

Create Report

Request creation of CSV report(s) for a specified date range.

Create Template

Tool to create a reusable template for document signing workflows.

Create Unclaimed Draft

Tool to create an unclaimed draft that can be claimed via a unique URL.

Delete API App

Tool to delete an API App from your Dropbox Sign account by its client_id.

Delete Fax

Tool to delete a fax from the system by its fax_id.

Delete Template

Permanently deletes a template from your Dropbox Sign account by its template_id.

Download Signature Request Files

Download files for a signature request as PDF (merged) or ZIP (individual documents).

Edit and Resend Embedded Signature Request

Tool to edit and resend an embedded signature request.

Edit and Resend Signature Request

Edits and resends an existing non-templated signature request with updated documents, signers, or settings.

Edit and Resend Unclaimed Draft

Tool to edit and resend a previously created unclaimed draft.

Edit and Resend Embedded Signature Request With Template

Tool to edit and resend an embedded signature request using templates.

Get Dropbox Sign Account

Retrieves detailed information about a Dropbox Sign account including quotas, payment status, and settings.

Get API App

Tool to retrieve information about an API App by its client ID.

Get Bulk Send Job

Tool to retrieve the status of a bulk send job.

Get Current Team Membership

Tool to get the current team membership status and details.

Get Embedded Sign URL

Retrieves an embedded signing URL for a specific signer's signature.

Get Embedded Template Edit URL

Tool to generate an edit URL for embedded template editing.

Get Available Fax Line Area Codes

Tool to retrieve available fax line area codes for a given country, state/province, and city.

Get Signature Request

Retrieves the current status and complete details of a signature request by ID.

Get Signature Request Files as Data URI

Tool to download signature request files as a base64-encoded data URI.

Get Signature Request Files as File URL

Retrieves a copy of the current documents and returns a JSON object with a URL to the file (PDFs only).

Get Team Info

Retrieves information about a Dropbox Sign team, including team name, member count, and sub-team count.

Get Template

Tool to return the specified template.

Download Template Files

Tool to download documents associated with a template.

Get Template Files as Data URI

Tool to retrieve template documents as base64-encoded data URI.

Get Template Files as File URL

Tool to retrieve a copy of template documents and return a JSON object with a URL to the file (PDFs only).

List API Apps

Tool to list API Apps.

List Bulk Send Jobs

Tool to list bulk send jobs.

List Faxes

Tool to list faxes and their properties.

List Fax Lines

Tool to list fax lines and their properties.

List Signature Requests

Tool to list signature requests.

List Sub-Teams

Lists all sub-teams belonging to a parent team with pagination support.

List Team Members

Lists all members and their roles for a specific team.

List All Teams

Lists all Dropbox Sign teams accessible to the authenticated user, including the current team and its sub-teams.

List Templates

Tool to list templates.

Generate OAuth Authorization URL

Tool to generate an OAuth authorization URL.

Release Signature Request Hold

Release a held signature request to send it to signers.

Remove User from Template

Tool to remove an account's access to a template.

Send Signature Request

Tool to create and send a new signature request with documents.

Send Request Reminder

Sends an email reminder to a signer about a pending signature request.

Update Dropbox Sign Account

Tool to update Dropbox Sign account properties and settings.

Update API App

Tool to update an existing API App in Dropbox Sign.

Update Signature Request

Updates the email address and/or name for a specific signer on a signature request.

Update Template Files

Tool to update files for an existing template.

Verify Dropbox Sign Account

Tool to verify whether a Dropbox Sign account exists for the given email.

SETUP GUIDE

Connect Dropbox sign MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Send a signature request for NDA to alice@example.com' }],
  stopWhen: stepCountIs( 5 )
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Dropbox sign API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Dropbox sign Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Send a signature request for NDA to alice@example.com'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Dropbox sign actions with your Agent

Why Use Composio?

AI Native Dropbox sign Integration

  • Supports both Dropbox sign MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for sending, signing, and tracking your Dropbox sign documents

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Dropbox sign access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Dropbox sign
  • Scoped, least privilege access to Dropbox sign resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

No, you can get started immediately using Composio's built-in Dropbox sign app. For production, we recommend configuring your own OAuth credentials.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Dropbox sign.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Dropbox sign tool your agent needs.Free to start.

Start building