View as Markdown
BurstyAI icon

BurstyAI ACTION

Run Workflow

Triggers an AI workflow on BurstyAI. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's BurstyAI account once, then configure and run Run Workflow from your backend or agent.

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: "burstyai-run-workflow",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    burstyai: { authProvisionId: "apn_xxxxxxx" },
    workflow: "Workflow ID",
    params: "Parameters",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Run Workflow inputs
Property Type Description
workflow Workflow ID string
The ID of the specific workflow to run. When viewing the workflow in BurstyAI, the ID is the last part of the URL. Example: 65e1cd00141fdc000195cb88
Required
params Parameters object
Optional parameters for the workflow
Optional
waitForCompletion Wait For Completion boolean
Set to true to poll the API in 3-second intervals until the workflow is completed
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
burstyai-run-workflow
Version
0.0.2
App
BurstyAI
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes