Generate AI avatar videos, translate videos into new languages, and manage voices, avatars, assets and templates on HeyGen.
HeyGen ships in the w6w first-party pack. It declares 18 actions, 3 health checks, and the host runs its code in a sandbox that never sees the credential.
io.w6w.heygenHeyGen brings AI avatar video generation into a workflow — turning a script into a talking avatar video, translating an existing video into new languages with voice cloning and lip-sync, and generating speech from text. Video actions create, poll, list and delete avatar videos, while translation actions submit a video for translation into one or more target languages and track each language’s job independently.
Supporting actions let a workflow browse the avatars, voice options and templates already available in a HeyGen account before generating from them — a template action fetches its variable schema so a workflow can fill in the right fields, and rendering from a template applies those substitutions directly. Assets like images or audio can be uploaded and referenced by ID in later generation steps, and account details are available for checking billing and plan information.
Every video and translation job is asynchronous: creating one returns immediately with an ID to poll or a webhook to wait on, while text-to-speech is the one exception, returning a ready audio file directly.
Three routes to the same 18 actions. The Workflow tab is generated from HeyGen's own manifest and carries its real ids, so it is copy-pasteable; the Code and CLI examples are the same call for any action on any app, so every app-specific value in them is a blank you fill in.
asset-upload Upload a file (image, video, audio, or PDF; max 32 MB) and return an asset_id usable in other actions.
avatar-group-list List avatar groups (characters). Each group contains one or more looks — use List Avatar Looks to find the look ID to pass to Create Avatar Video.
avatar-look-list List avatar looks (outfits/styles/poses). A look's ID is the avatarId Create Avatar Video expects.
template-video-generate Render a template with variable substitutions. Fetch Get Template first to see the variable names and types it defines. Returns immediately with a video_id in a pending status.
user-get Return the authenticated account's profile and billing details (wallet balance, subscription credits, or usage-based spend, depending on the account's billing type).
video-create Generate a video of a HeyGen avatar speaking a script (or lip-synced to supplied audio). Returns immediately with a video_id in a pending status — poll Get Video, or pass a callbackUrl, for the finished result.
video-list List videos in the workspace, newest first, optionally filtered by folder/title.
video-translation-create Translate a video into one or more target languages, with voice cloning and lip-sync. Returns one job ID per target language — poll each with Get Video Translation.
video-translation-get Fetch a video translation job's status and, once completed, its output URLs.
video-translation-languages-list List the exact target-language names accepted by Create Video Translation.
voice-list List available voices, filterable by ownership, engine, language and gender. Filter by engine=starfish for voices usable with Generate Speech.
voice-speech-generate Synthesize speech audio from text (1-5,000 characters) using a Starfish-engine voice. Returns immediately with a URL to the generated audio file.
A workflow step names the app and the action, and the editor fills in the
connection when you pick one. This is the Step shape from the
workflow spec, carrying HeyGen's real ids.
{
"manifestVersion": "2",
"name": "heygen-example",
"steps": [
{
"id": "asset-get",
"uses": {
"app": "io.w6w.heygen",
"action": "asset-get",
"connection": "conn_YOUR_CONNECTION_ID"
},
"with": {
"assetId": "<assetId>"
}
}
]
}asset-get asset-upload avatar-group-list avatar-look-list template-get +13 more actions available
Every app-specific value here is a blank you have to fill in. An
app action is reached through the connection that authenticates it, so the
address is a connection id, not the app id — and connections belong to your account,
so a public page cannot know yours. Create one for HeyGen, then fill in
the three blanks: conn_YOUR_CONNECTION_ID, the action key, and the
parameters that action declares. The call itself is real — the shape is transcribed
from the studio's own snippet builder, which prints the same kind of blanks — but
nothing in it is specific to HeyGen. The Workflow tab is where this app's
real ids are.
npm install @w6w/sdkyarn add @w6w/sdkpnpm add @w6w/sdkdeno add npm:@w6w/sdkimport { W6wClient, isActionRun } from "@w6w/sdk";
// Reads W6W_BASE_URL and W6W_TOKEN from the environment when omitted.
const client = new W6wClient();
const envelope = await client.run({
urn: "conn_YOUR_CONNECTION_ID",
action: "asset-get",
payload: {
assetId: "<value>",
},
});
if (isActionRun(envelope)) console.log(envelope.value); npm install -g @w6w/cli w6w run conn_YOUR_CONNECTION_ID --action asset-get --payload '{"assetId":"<value>"}' Give an AI agent HeyGen — without giving it HeyGen's credentials. One MCP endpoint exposes every app, function and workflow the caller is entitled to, as tools it can discover and run. Access is granted per team while we onboard.
One tool call{
"name": "w6w_invoke",
"arguments": {
"ref": "app:io.w6w.heygen#asset-get",
"input": {
"assetId": "<assetId>"
}
}
}
Every tool names its target with a single ref. The
app: form above doesn't name a connection at all — the
host resolves which of the caller's HeyGen connections to sign
with, and refuses rather than guesses when the answer is ambiguous.
The token is attached host-side, at the moment of the call. It is never a tool argument, never in the model's context, and never in a transcript — so a prompt injection has nothing to exfiltrate.
Tools are derived per end user from what that person has actually connected and is entitled to — not one shared bot identity carrying the union of everyone's access.
Multi-step work runs on the workflow engine and returns a run handle the agent can poll — retries, branching and state survive the conversation that started them.
HeyGen's declared health checks are on the surface too, so an agent can tell "the vendor is down" from "your credential expired" before it burns a retry on either.
The MCP surface is part of the hosted platform. HeyGen itself is MIT, and the runtime that executes it is source-available (FSL).
HeyGen declares its own checks, so its health is a property of the app rather than something the host guesses at.
Component status from status.heygen.com, led by the 'https://api.heygen.com' component this app actually calls. The www/app/LiveAvatar components are different surfaces but are still reported.
Remaining wallet balance, subscription credit pools, or usage-based spend headroom, read from GET /v3/users/me. Exactly one billing shape is populated per account.