MULTI-APP TOOLKIT
Build with Adobe Acrobat Sign + Smartsheet
- Multi-app
- One MCP session
- 35 actions
- 4 triggers
- Managed auth
MCP
One MCP session, both toolsets
One session gives your product or agent every Adobe Acrobat Sign and Smartsheet tool at once — connect once, list tools, and call them like any single-app session.
// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
new URL("https://remote.mcp.pipedream.net/v3"),
{
requestInit: {
headers: {
Authorization: `Bearer ${accessToken}`,
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
"x-pd-app-slug": "adobe_sign,smartsheet",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// One list, both toolsets: Adobe Acrobat Sign and Smartsheet tools arrive
// together, each keyed by its own app's slug.
// e.g. run Add Column:
const result = await mcp.callTool({
name: "smartsheet-add-column",
arguments: {
sheetId: "Sheet ID or URL",
title: "Column Title",
},
})import { PipedreamClient } from "@pipedream/sdk"
const pd = new PipedreamClient({
projectId: process.env.PIPEDREAM_PROJECT_ID!,
clientId: process.env.PIPEDREAM_CLIENT_ID!,
clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
projectEnvironment: "production",
})
const externalUserId = "{external_user_id}" // any stable ID for this user in your system
const [adobeSignTools, smartsheetTools] =
await Promise.all([
pd.components.list({ app: "adobe_sign" }),
pd.components.list({ app: "smartsheet" }),
])
// One external user owns both connected accounts, so either app's tools
// run on their behalf with the same externalUserId.curl "https://api.pipedream.com/v1/connect/{project_id}/components?app=adobe_sign" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}"
curl "https://api.pipedream.com/v1/connect/{project_id}/components?app=smartsheet" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}"
# Connect both accounts to the same external_user_id, then
# configure and invoke either app's tools on that user's behalf.ARCHITECTURE
One user, two connected accounts
Your user connects each account once, under whatever ID they already have in your product. The two stay independent — either can be revoked on its own — and your code reaches both through that one user.
Your product
external_user_id
{external_user_id}Pipedream Connect
Managed identity
Auth · tools · routing
Adobe Acrobat Sign
Connected account
Smartsheet
Connected account
TOOLS
Adobe Acrobat Sign tools
The Adobe Acrobat Sign tools this pairing puts in reach, each one running on your user's own connected account.
Actions
No Adobe Acrobat Sign actions are available yet.
Triggers
No Adobe Acrobat Sign triggers are available yet.
TOOLS
Smartsheet tools
The Smartsheet tools this pairing puts in reach, each one running on your user's own connected account.
Actions top 8 of 35
-
Add Column
actionAdd a single column to an existing sheet, at the end or at a chosen position. Returns the created column underresult, including its ID. Use List Columns to see the existing columns and their positions first. To change a column that already exists, use Update Column. See the documentationWritev1.0.1 -
Add Comment
actionAdds a comment to an existing discussion on a Smartsheet sheet (POST /sheets/{sheetId}/discussions/{discussionId}/comments). Use List Discussions to find a Discussion ID. See the documentation.Writev0.0.1 -
Add Row to Sheet
actionAdd one or more rows to a sheet, addressing cells by column NAME rather than column ID. Returns the created rows underresult, each with its new row ID. Call Get Sheet or List Columns first to learn the column names. To change rows that already exist, use Update Row. See the documentationWritev1.1.1 -
Copy Rows
actionCopy rows from one sheet to another. The rows stay in the source sheet and are duplicated in the destination. Cell values and formatting always come across; attachments and comments only if you ask for them via Include. Columns the destination sheet is missing are created automatically, so it does not have to match the source first. ReturnsrowMappingspairing each source row ID with its new ID in the destination. To move rows instead, removing them from the source, use Move Rows. See the documentationWritev0.1.1 -
Copy Sheet
actionCopy an existing sheet to a new location. Creates a complete duplicate including all rows, columns, formatting, and attachments. Specify a destination workspace or folder, or omit both to copy to the user's home (Sheets folder). Returns the new sheet's ID and permalink. Use List Sheets to find the source sheet ID. To move a sheet instead (removing it from the original location), use Move Sheet. See the documentationWritev0.1.1 -
Create Discussion
actionCreates a discussion on a Smartsheet sheet. If a Row ID is provided the discussion is attached to that row (POST /sheets/{sheetId}/rows/{rowId}/discussions); otherwise it is created at the sheet level (POST /sheets/{sheetId}/discussions). Use List Sheets to find a Sheet ID, and Get Sheet or Search to find a Row ID. The discussion title is auto-generated by Smartsheet from the first 100 characters of the initial comment and cannot be set directly. See the documentation.Writev0.0.1 -
Create Sheet
actionCreate a new blank sheet with its column schema defined up front, inside a workspace or a folder. Returns the new sheet underresult, including its ID and permalink. To create a sheet from an existing template instead of defining columns, use New Sheet From Template. To load a sheet from a CSV or XLSX file, use Import Sheet. See the documentationWritev1.0.1 -
Delete Column
actionPermanently delete a column from a sheet. WARNING: This is irreversible - all cell data in the column is permanently destroyed. Use List Columns to find the column ID before deleting. Consider using Get Sheet to review the column's data before deletion. See the documentationWritev0.1.1
Triggers
-
New Comment Added (Instant)
triggerEmit new event when a comment is added in a sheet.Instantv0.0.6 -
New Row Added (Instant)
triggerEmit new event when a row is added to a sheet.Instantv0.0.6 -
New Row Deleted (Instant)
triggerEmit new event when a row is deleted from a sheet.Instantv0.0.5 -
New Row Updated (Instant)
triggerEmit new event when a row is updated in a sheet.Instantv0.0.7
MULTI-APP
Works with more apps
The combinations customers connect alongside these two — nothing here is limited to a pair.
REFERENCE
Toolkit details
- x-pd-app-slug
- adobe_sign,smartsheet
- Primary app
- Adobe Acrobat Sign (adobe_sign)
- Second app
- Smartsheet (smartsheet)
- Authentication
- OAuth + OAuth
- Available actions
- 35
- Available triggers
- 4