# Transloadit — Pipedream Connect

> File Uploading, Conversion & Processing

- API slug: `transloadit` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: File Storage
- Website: https://transloadit.com/
- This page (HTML): https://pipedream.com/apps/transloadit
- Tools: 5 actions · 2 triggers

## Connect via MCP (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: transloadit`

```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": "transloadit",
      },
    },
  },
)

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

const { tools } = await mcp.listTools()

// e.g. run Cancel Assembly:
const result = await mcp.callTool({
  name: "transloadit-cancel-assembly",
  arguments: {
    assemblyId: "Assembly ID",
  },
})
```

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

## SDK

```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 result = await pd.actions.run({
  id: "transloadit-cancel-assembly",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    transloadit: { authProvisionId: "apn_xxxxxxx" },
    assemblyId: "Assembly ID",
  },
})
```

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

## Actions (5)

### `transloadit-cancel-assembly` — Cancel Assembly (Write)

Cancel a running assembly by its assembly ID. Useful for aborting processing jobs that are no longer needed. See the documentation

Full schema: https://pipedream.com/apps/transloadit/actions/cancel-assembly.md

### `transloadit-create-assembly` — Create Assembly (Write)

Create a new assembly to process files using a specified template and steps. See the documentation

Full schema: https://pipedream.com/apps/transloadit/actions/create-assembly.md

### `transloadit-get-assembly-status` — Get Assembly Status (Read-only)

Retrieve the current status and results of an existing assembly. See the documentation

Full schema: https://pipedream.com/apps/transloadit/actions/get-assembly-status.md

### `transloadit-list-assembly-id-options` — List Assembly ID Options (Read-only)

Retrieves available options for the Assembly ID field.

Full schema: https://pipedream.com/apps/transloadit/actions/list-assembly-id-options.md

### `transloadit-list-template-id-options` — List Template ID Options (Read-only)

Retrieves available options for the Template ID field.

Full schema: https://pipedream.com/apps/transloadit/actions/list-template-id-options.md

## Triggers (2)

### `transloadit-new-assembly-completed` — New Assembly Completed (Polling)

Emit new event when a Transloadit assembly finishes processing. See the documentation

Full schema: https://pipedream.com/apps/transloadit/triggers/new-assembly-completed.md

### `transloadit-new-assembly-error` — New Assembly Failed (Polling)

Emit new event when a failed occurs during assembly processing. See the documentation

Full schema: https://pipedream.com/apps/transloadit/triggers/new-assembly-error.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
