# Ironclad + Power Automate — Pipedream Connect

> Connect a user's Ironclad and Power Automate accounts and expose tools for both apps directly in your product or your agent.

- Apps: Ironclad (`ironclad`) + Power Automate (`power_automate`)
- This page (HTML): https://pipedream.com/apps/ironclad/integrations/power-automate
- One `external_user_id` owns both connected accounts, and each account stays independently revocable.

## One session, both toolsets (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: ironclad,power_automate`
- `x-pd-app-slug` takes a comma-separated list, so `ironclad,power_automate` is one session on one transport. Both toolsets arrive from a single `listTools()`, and a tool is called exactly as it would be in a single-app session.

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
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 accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_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": "ironclad,power_automate",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// One list, both toolsets: Ironclad and Power Automate tools arrive
// together, each keyed by its own app's slug.

// e.g. run Create Record:
const result = await mcp.callTool({
  name: "ironclad-create-record",
  arguments: {
    recordName: "Name",
    recordType: "Type",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## Both apps from your backend

```ts
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 [ironcladTools, powerAutomateTools] =
  await Promise.all([
    pd.components.list({ app: "ironclad" }),
    pd.components.list({ app: "power_automate" }),
  ])

// One external user owns both connected accounts, so either app's tools
// run on their behalf with the same externalUserId.
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Ironclad

- API slug: `ironclad` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Business Management
- Website: https://ironcladapp.com/
- Managed OAuth scopes: `scim.users.readUsers` · `public.workflows.readWorkflows` · `public.records.readSchemas` · `public.records.readRecords` · `public.records.createRecords` · `public.workflows.createWorkflows` · `public.workflows.updateWorkflows` · `public.webhooks.createWebhooks` · `public.webhooks.deleteWebhooks` · `public.workflows.readSchemas` · `public.records.deleteRecords` · `public.records.updateRecords`
- App page (HTML): https://pipedream.com/apps/ironclad
- Tools: 17 actions · 3 triggers

Full tool list, API proxy, and SDK quickstart: https://pipedream.com/apps/ironclad.md

### Actions (top 8 of 17)

- [Create Record](https://pipedream.com/apps/ironclad/actions/create-record.md) — `ironclad-create-record`
- [Delete Record](https://pipedream.com/apps/ironclad/actions/delete-record.md) — `ironclad-delete-record`
- [Describe Workflow Template](https://pipedream.com/apps/ironclad/actions/describe-workflow-template.md) — `ironclad-describe-workflow-template`
- [Describe Workspace](https://pipedream.com/apps/ironclad/actions/describe-workspace.md) — `ironclad-describe-workspace`
- [Get Record](https://pipedream.com/apps/ironclad/actions/get-record.md) — `ironclad-get-record`
- [Get Workflow](https://pipedream.com/apps/ironclad/actions/get-workflow.md) — `ironclad-get-workflow`
- [Launch Workflow](https://pipedream.com/apps/ironclad/actions/launch-workflow.md) — `ironclad-launch-workflow`
- [List Properties Options](https://pipedream.com/apps/ironclad/actions/list-properties-options.md) — `ironclad-list-properties-options`

### Triggers (3)

- [New Approval Event Instant](https://pipedream.com/apps/ironclad/triggers/new-approval-event-instant.md) — `ironclad-new-approval-event-instant`
- [New Workflow Document Event (Instant)](https://pipedream.com/apps/ironclad/triggers/new-workflow-document-event-instant.md) — `ironclad-new-workflow-document-event-instant`
- [New Workflow Event (Instant)](https://pipedream.com/apps/ironclad/triggers/new-workflow-event-instant.md) — `ironclad-new-workflow-event-instant`

## Power Automate

- API slug: `power_automate` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Productivity
- Website: https://www.microsoft.com/en-us/power-platform/products/power-automate
- Managed OAuth scopes: `offline_access` · `https://service.flow.microsoft.com/User` · `https://service.flow.microsoft.com/Flows.Read.All` · `https://service.flow.microsoft.com/Flows.Manage.All`
- App page (HTML): https://pipedream.com/apps/power-automate
- Tools: 0 actions · 0 triggers

Full tool list, API proxy, and SDK quickstart: https://pipedream.com/apps/power-automate.md

---

- Ironclad: https://pipedream.com/apps/ironclad.md · Power Automate: https://pipedream.com/apps/power-automate.md
- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
