Frame.io icon

CONNECT APP

Build with Frame.io

Video Review and Collaboration Software

File Storage

  • OAuth

MCP

Give your agent Frame.io tools

Every Frame.io action is exposed as an MCP tool on Pipedream's remote server. Point a client at it with your end user's ID and Connect resolves that user's Frame.io account for each tool call — you store no tokens.

// 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": "frame",
      },
    },
  },
)

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

const { tools } = await mcp.listTools()

// e.g. run Create Asset:
const result = await mcp.callTool({
  name: "frame-create-asset",
  arguments: {
    accountId: "Account ID",
    assetId: "Parent Asset ID",
  },
})

API PROXY

Call the Frame.io API directly

For an endpoint with no pre-built tool, the Connect proxy forwards your request to the Frame.io API with the connected user's credentials attached. You store no tokens and write no refresh logic.

const resp = await pd.proxy.get({
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  accountId: "apn_xxxxxxx",
  url: "https://api.frame.io/v2/accounts",
})

// Any allowed Frame.io endpoint works here. Pipedream attaches the
// connected account's credentials to the outgoing request.

SDK

Run Frame.io actions from your backend

Connect a user's Frame.io account once, then run Create Asset on their behalf from your own code — TypeScript, Python, or plain HTTP.

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: "frame-create-asset",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    frame: { authProvisionId: "apn_xxxxxxx" },
    accountId: "Account ID",
    assetId: "Parent Asset ID",
  },
})

REFERENCE

App details

Reference metadata for the Frame.io connector in the Pipedream registry.

App slug
frame
Authentication
OAuth
Categories
File Storage
Actions
5
Triggers
4
API proxy
Available

OAuth scopes

These are the scopes Pipedream's managed Frame.io OAuth client requests when one of your users connects an account. Supply your own OAuth client to request a different set.

  • presentation.update
  • comment.read
  • asset.update
  • reviewlink.update
  • webhook.create
  • account.read
  • action.update
  • reviewlink.read
  • presentation.read
  • action.create
  • presentation.create
  • auditlog.read
  • team.create
  • comment.create
  • team.read
  • offline
  • reviewlink.delete
  • project.update
  • project.delete
  • webhook.delete
  • action.delete
  • asset.delete
  • webhook.read
  • asset.create
  • comment.delete
  • webhook.update
  • asset.read
  • comment.update
  • project.read
  • action.read
  • reviewlink.create
  • presentation.delete
  • project.create
  • team.update