IntegrateIntegrate
Integrations

Adobe Acrobat Sign Integration

Manage Adobe Acrobat Sign get user, list agreements, get agreement, create agreement, list library documents

The Adobe Acrobat Sign integration provides access to manage Adobe Acrobat Sign get user, list agreements, get agreement, create agreement, list library documents through the Integrate MCP server.

Installation

The Adobe Acrobat Sign integration is included with the SDK:

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

Setup

1. Create an Adobe Acrobat Sign OAuth App

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

2. Configure the Integration on Your Server

Add the Adobe Acrobat Sign integration to your server configuration. The integration automatically reads ADOBE_ACROBAT_SIGN_CLIENT_ID and ADOBE_ACROBAT_SIGN_CLIENT_SECRET from your environment variables:

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

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    adobeAcrobatSignIntegration({
      scopes: ["user_read", "agreement_read", "agreement_write", "library_read", "library_write"], // Optional
    }),
  ],
});

You can override the environment variables by passing explicit values:

adobeAcrobatSignIntegration({
  clientId: process.env.CUSTOM_ADOBE_ACROBAT_SIGN_ID,
  clientSecret: process.env.CUSTOM_ADOBE_ACROBAT_SIGN_SECRET,
      scopes: ["user_read", "agreement_read", "agreement_write", "library_read", "library_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("adobe_acrobat_sign");
const result = await client.adobe_acrobat_sign.getUser({});

console.log(result);

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

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

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

Configuration Options

Prop

Type

Default Scopes

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

  • user_read
  • agreement_read
  • agreement_write
  • library_read
  • library_write

Tools

adobe_acrobat_sign_get_user

Acrobat sign get user

No parameters.

adobe_acrobat_sign_list_agreements

Acrobat sign list agreements

Prop

Type

adobe_acrobat_sign_get_agreement

Acrobat sign get agreement

Prop

Type

adobe_acrobat_sign_create_agreement

Acrobat sign create agreement

Prop

Type

adobe_acrobat_sign_list_library_documents

Acrobat sign list library documents

Prop

Type

adobe_acrobat_sign_get_signing_urls

Acrobat sign get signing urls

Prop

Type

Notes

  • Category: Legal
  • Authentication mode: OAuth

On this page