VidVibe — AI Video Production via MCP
Overview
VidVibe (vidvibe.io) is an AI video-creation platform: brands, flows (node graphs that
end in a Joiner that cuts clips together), characters (AI presenters that lip-sync a
script), and one-form studios for video and image generation.
Its remote MCP server exposes the product as 100 tools — the same services the app's
buttons call — so an agent can run a whole production without a browser: price a flow,
launch it, follow the run, fetch the cut, and publish it to YouTube or TikTok.
Endpoint: POST https://api.vidvibe.io/mcp (streamable HTTP, stateless, tools only —
no resources or prompts). Every call runs as the token's VidVibe account, spends its
credits, and writes rows the web app then shows.
Instructions
Setup
Sign up at https://app.vidvibe.io, then Settings → API (/api-keys) → Create
Token → pick scopes. The token (vv_ + 64 hex) is shown once.
npx terminal-skills install vidvibe
claude mcp add --transport http vidvibe https://api.vidvibe.io/mcp \
--header "Authorization: Bearer $VIDVIBE_TOKEN"
Claude Desktop / Codex / Gemini CLI / Cursor: register an HTTP MCP server with the same
URL and header. Clients that reserve Authorization for their own OAuth (claude.ai
custom connectors) may send x-api-key: vv_… instead — the server accepts either, and
Authorization wins if both are present. The server does not implement OAuth, so set
authentication to None and add the header manually.
Verify with tools/list — the response contains only the tools the token's scopes allow.
Scopes
Tokens carry resource:operation scopes: characters, flows (read · execute),
flow_runs, brands, styles, projects, videos, images, assets, uploads,
publishing (read · execute), channels, favorites, trash, billing,
showcase, blog. A call outside them fails with API key lacks permission for tool.
The blog_* tools additionally need role = admin — scope alone is not enough. Tokens
cannot create tokens, change plans, manage the team, or edit system templates.
Credits — read before running anything paid
- VidVibe bills in credits (CR). Generation is priced by model and length; processing
steps are a small flat amount; reads are free. New accounts get a 14-day trial with
100 CR.
- Paid work is prepaid at launch and refunded if the run fails, so a failure never
silently costs money.
cancel_flow_run refunds the prepaid charge.
- A refused charge is a JSON result, not an error:
{"error": "insufficient_credits", "needed_cr", "balance_cr", "topup_url"} or
{"error": "subscription_expired", "reason", "balance_cr", "topup_url"}. A lapsed trial
or expired subscription cannot spend whatever the balance says.
get_flow_price(flow_id, inputs) returns price_cr, balance_cr, enough and charges
nothing. Call it and state the price before every paid tool. get_credit_balance
and get_billing_info are the account-level reads.
Tool map
💳 = spends credits.
| Domain |
Tools |
| Flows |
list_flows, list_my_flows, get_flow, get_flow_step, get_flow_price, launch_flow💳, regenerate_flow_run💳, run_flow💳, run_flow_and_wait💳, run_flow_step💳, export_flow, import_flow |
| Runs |
list_flow_runs, get_flow_run, list_flow_run_steps, change_flow_run_step💳, approve_flow_run, reject_flow_run, retry_flow_node, continue_flow_run_yolo, cancel_flow_run, get_flow_run_video_url, view_flow_run_video, view_flow_step_output |
| Canvas editing |
add_canvas_step, connect_steps, disconnect_steps, update_step_settings, add_motion_layer, edit_motion_layer, move_motion_layer, remove_motion_layer |
| Projects (template pipelines) |
get_project_status, get_project_video_url, get_project_video, list_projects |
| Videos |
list_videos, get_video, generate_video💳, save_video, view_video, rename_video, get_video_url, delete_video |
| Images |
list_images, get_image, generate_image💳, save_image, view_image, get_image_url, delete_image |
| Characters |
list_characters, get_character, get_character_versions, get_character_image, get_character_image_url, create_character💳, create_character_and_wait💳, edit_character💳, edit_character_and_wait💳, upload_character💳, set_active_character, rename_character, delete_character |
| Brands & styles |
list_brands, get_brand, create_brand, create_brand_from_url💳, update_brand, delete_brand, list_styles |
| Uploads & library |
upload_video, upload_image, create_upload, finalize_upload, list_assets, view_asset, list_showcase, list_favorites, toggle_favorite, list_trash, restore_from_trash, permanent_delete |
| Publishing |
list_channels, list_publishable, publish_video_to_youtube, publish_video_to_tiktok, get_publish_status, list_publish_history |
| Account |
get_credit_balance, get_billing_info |
Blog [admin] |
list_blog_categories, create_blog_category, update_blog_category, delete_blog_category, list_blog_posts, get_blog_post, create_blog_post, update_blog_post, delete_blog_post |
Polling — never block, never busy-loop
Every tool that starts async work returns
poll: { tool, args, interval_seconds, note }. Honour that interval: 10 s for a flow
run, 5 s for one step or a character, 15 s for a pipeline project or a publish job.
get_flow_run returns poll_again_in_seconds while it is going and null when it is
finished or waiting on the user (waiting_on_user: true → approve_flow_run /
reject_flow_run / retry_flow_node). The *_and_wait variants check every 10 s and
return a snapshot after 10 minutes — the work keeps going either way. A paid run is
detached from the MCP request: disconnecting never stops it, and the result lands in the
account.
Core workflows
Run a ready-made flow — list_flows → get_flow for the input schema →
get_flow_price → launch_flow(flow_id, inputs, brand_id) → poll get_flow_run →
get_flow_run_video_url for a signed mp4 (24 h). Pass approval_mode: true to pause at
review gates. Not happy with one step? list_flow_run_steps prices a re-run from each,
change_flow_run_step re-runs from there with feedback as a new run.
Generate a single clip or image — generate_video / generate_image return a
flow_run_id; poll get_flow_run on it, then call save_video / save_image with the
same id to mint the library entry. Generation alone does not save it. generate_video
takes prompt, model (default veo-3.1), aspect_ratio (9:16 default), duration
(1–60 s, default 5), reference_url, brand_id, style_id.
Brand and style on every generation — brand_id is tri-state on generate_image,
generate_video, create_character and run_flow_step: omit = keep the user's
last-used brand, null = explicitly none, an id from list_brands = that brand.
(launch_flow differs: omitting it means no brand.) style_id comes from
list_styles; omit for none — an unknown or foreign id is a 404, never a silent fallback.
Build a canvas — add_canvas_step(flow_id, kind, prompt, settings) places an image /
video / text / audio card without running it, connect_steps wires a result into
another card's parameter ("input" on the Joiner puts a clip in the cut; "audio",
"subtitles" are its other slots), update_step_settings patches styleId / brandId
("none" = unbranded), and run_flow_step generates one card (charged, 1 CR floor).
System templates are read-only — fork one in the app first. export_flow → edit →
import_flow round-trips a flow as .flow.json.
Publish — list_channels for the connected account id, list_publishable for what
can go out, then publish_video_to_youtube(video_id, title, description, privacy, youtube_account_id) or publish_video_to_tiktok, and poll get_publish_status.
Examples
Example 1: Priced, polled, published
"Turn this week's changelog into a 30-second vertical short for our YouTube channel."
1. get_credit_balance → 240 CR
2. list_flows → get_flow("shorts-explainer") → inputs: topic, script, duration
3. get_flow_price(flow_id, inputs) → { price_cr: 30, balance_cr: 240, enough: true }
→ tell the user "this run costs 30 CR of your 240" and wait for a yes
4. list_brands → brand_id
5. launch_flow(flow_id, inputs, brand_id) → { run_id, review_url, charged_credits: 30,
poll: { tool: "get_flow_run", interval_seconds: 10 } }
6. get_flow_run(run_id) every 10 s → status "running" … → "completed"
7. get_flow_run_video_url(run_id) → signed .mp4 (24 h) + review_url for the app
8. list_channels → publish_video_to_youtube(video_id, title, privacy: "unlisted", youtube_account_id)
9. get_publish_status every 15 s → "published"
Example 2: The batch stops instead of looping
> get_flow_price(flow_id, inputs) → { price_cr: 30, balance_cr: 45 }
12 products × 30 CR = 360 CR against a 45 CR balance — say so before launching anything.
> launch_flow(...) # product 2
{ "error": "insufficient_credits", "needed_cr": 30, "balance_cr": 15,
"topup_url": "https://app.vidvibe.io/billing" }
Correct behaviour: relay the numbers and the link, stop the batch (a retry just fails
again), and report what did launch — run_id for product 1 is real work already paid for
and still running server-side. Free reads still answer the rest: list_flow_runs,
list_videos, get_credit_balance.
Guidelines
- Money is real. Never launch a paid tool the user did not ask for.
get_flow_price
first, state price_cr vs balance_cr, multiply out batches, and get a yes. Prefer one
launch_flow over re-running steps one at a time.
- Generation is two calls.
generate_video / generate_image start work; the library
entry only exists after save_video / save_image with the same flow_run_id.
Reporting "done" before saving loses the result.
- Publishing is public.
publish_video_to_youtube / publish_video_to_tiktok push to
a live channel. Quote the title, description and privacy, get approval, and prefer
privacy: "unlisted" for a first pass.
- Respect the poll hint. Polling faster than
interval_seconds gains nothing and
risks rate limits; the work is detached from the connection, so waiting is safe. If a
run reports waiting_on_user: true, ask the user — do not auto-approve_flow_run, and
treat continue_flow_run_yolo (skip all remaining gates) as needing an explicit yes.
- Deletes are real deletes.
delete_video, delete_image, delete_character,
delete_brand and permanent_delete remove the user's work; permanent_delete empties
trash beyond recovery. Name exactly what goes and confirm first.
- Show links, not blobs. Signed media URLs expire in ~24 h; every image/character
result also carries a permanent
app_url (/share/image/:id, /share/avatar/:id,
/share/video/:id) — give that. Images come back as inline MCP image blocks; video
cannot be played in chat, so video tools attach a poster frame and say so in
inline_preview. A client cannot open a URL on its own — link it for the user.
- Read the error instead of retrying.
insufficient_credits / subscription_expired
carry the price, the balance and the top-up URL. "API key lacks permission" means a
missing scope (or a non-admin token on a blog_* tool), not a bad request.
- IDs are UUIDs scoped to the token's account — a 404 on a valid-looking id usually
means it belongs to another account.
- The token acts as the user: its runs, uploads and publishes appear in their library and
spend their credits. Never commit it, scrub it from logs, and treat a 401 as revoked —
ask them to reissue in Settings → API.
1---2name: vidvibe3description: Produce video with AI from the terminal via the VidVibe MCP server — price and launch flows, generate videos and images, create and lip-sync characters, edit a flow canvas, manage brands and styles, upload assets, and publish finished cuts to YouTube and TikTok. Use when: connecting an agent to vidvibe.io, generating short-form or marketing video, batch-producing branded clips, driving a video pipeline that keeps running server-side, publishing to a connected channel, or when the user mentions "VidVibe", "flow run", "character", "Joiner", or spending "credits" on video.4license: Apache-2.05---6
7# VidVibe — AI Video Production via MCP
8
9## Overview
10
11VidVibe (vidvibe.io) is an AI video-creation platform: brands, flows (node graphs that
12end in a Joiner that cuts clips together), characters (AI presenters that lip-sync a
13script), and one-form studios for video and image generation.
14
15Its remote MCP server exposes the product as **100 tools** — the same services the app's
16buttons call — so an agent can run a whole production without a browser: price a flow,
17launch it, follow the run, fetch the cut, and publish it to YouTube or TikTok.
18
19Endpoint: `POST https://api.vidvibe.io/mcp` (streamable HTTP, stateless, tools only —
20no resources or prompts). **Every call runs as the token's VidVibe account**, spends its
21credits, and writes rows the web app then shows.
22
23## Instructions
24
25### Setup
26
27Sign up at https://app.vidvibe.io, then **Settings → API** (`/api-keys`) → **Create
28Token** → pick scopes. The token (`vv_` + 64 hex) is shown **once**.
29
30```bash
31npx terminal-skills install vidvibe
32claude mcp add --transport http vidvibe https://api.vidvibe.io/mcp \
33 --header "Authorization: Bearer $VIDVIBE_TOKEN"
34```
35
36Claude Desktop / Codex / Gemini CLI / Cursor: register an HTTP MCP server with the same
37URL and header. Clients that reserve `Authorization` for their own OAuth (claude.ai
38custom connectors) may send `x-api-key: vv_…` instead — the server accepts either, and
39`Authorization` wins if both are present. The server does **not** implement OAuth, so set
40authentication to *None* and add the header manually.
41
42Verify with `tools/list` — the response contains only the tools the token's scopes allow.
43
44### Scopes
45
46Tokens carry `resource:operation` scopes: `characters`, `flows` (read · **execute**),
47`flow_runs`, `brands`, `styles`, `projects`, `videos`, `images`, `assets`, `uploads`,
48`publishing` (read · **execute**), `channels`, `favorites`, `trash`, `billing`,
49`showcase`, `blog`. A call outside them fails with *API key lacks permission for tool*.
50The `blog_*` tools additionally need `role = admin` — scope alone is not enough. Tokens
51cannot create tokens, change plans, manage the team, or edit system templates.
52
53### Credits — read before running anything paid
54
55- VidVibe bills in **credits (CR)**. Generation is priced by model and length; processing
56 steps are a small flat amount; reads are free. New accounts get a 14-day trial with
57 100 CR.
58- Paid work is **prepaid at launch and refunded if the run fails**, so a failure never
59 silently costs money. `cancel_flow_run` refunds the prepaid charge.
60- A refused charge is a **JSON result, not an error**:
61 `{"error": "insufficient_credits", "needed_cr", "balance_cr", "topup_url"}` or
62 `{"error": "subscription_expired", "reason", "balance_cr", "topup_url"}`. A lapsed trial
63 or expired subscription cannot spend whatever the balance says.
64- `get_flow_price(flow_id, inputs)` returns `price_cr`, `balance_cr`, `enough` and charges
65 nothing. **Call it and state the price before every paid tool.** `get_credit_balance`
66 and `get_billing_info` are the account-level reads.
67
68### Tool map
69
70💳 = spends credits.
71
72| Domain | Tools |
73|---|---|
74| Flows | `list_flows`, `list_my_flows`, `get_flow`, `get_flow_step`, `get_flow_price`, `launch_flow`💳, `regenerate_flow_run`💳, `run_flow`💳, `run_flow_and_wait`💳, `run_flow_step`💳, `export_flow`, `import_flow` |
75| Runs | `list_flow_runs`, `get_flow_run`, `list_flow_run_steps`, `change_flow_run_step`💳, `approve_flow_run`, `reject_flow_run`, `retry_flow_node`, `continue_flow_run_yolo`, `cancel_flow_run`, `get_flow_run_video_url`, `view_flow_run_video`, `view_flow_step_output` |
76| Canvas editing | `add_canvas_step`, `connect_steps`, `disconnect_steps`, `update_step_settings`, `add_motion_layer`, `edit_motion_layer`, `move_motion_layer`, `remove_motion_layer` |
77| Projects (template pipelines) | `get_project_status`, `get_project_video_url`, `get_project_video`, `list_projects` |
78| Videos | `list_videos`, `get_video`, `generate_video`💳, `save_video`, `view_video`, `rename_video`, `get_video_url`, `delete_video` |
79| Images | `list_images`, `get_image`, `generate_image`💳, `save_image`, `view_image`, `get_image_url`, `delete_image` |
80| Characters | `list_characters`, `get_character`, `get_character_versions`, `get_character_image`, `get_character_image_url`, `create_character`💳, `create_character_and_wait`💳, `edit_character`💳, `edit_character_and_wait`💳, `upload_character`💳, `set_active_character`, `rename_character`, `delete_character` |
81| Brands & styles | `list_brands`, `get_brand`, `create_brand`, `create_brand_from_url`💳, `update_brand`, `delete_brand`, `list_styles` |
82| Uploads & library | `upload_video`, `upload_image`, `create_upload`, `finalize_upload`, `list_assets`, `view_asset`, `list_showcase`, `list_favorites`, `toggle_favorite`, `list_trash`, `restore_from_trash`, `permanent_delete` |
83| Publishing | `list_channels`, `list_publishable`, `publish_video_to_youtube`, `publish_video_to_tiktok`, `get_publish_status`, `list_publish_history` |
84| Account | `get_credit_balance`, `get_billing_info` |
85| Blog `[admin]` | `list_blog_categories`, `create_blog_category`, `update_blog_category`, `delete_blog_category`, `list_blog_posts`, `get_blog_post`, `create_blog_post`, `update_blog_post`, `delete_blog_post` |
86
87### Polling — never block, never busy-loop
88
89Every tool that starts async work returns
90`poll: { tool, args, interval_seconds, note }`. Honour that interval: **10 s** for a flow
91run, **5 s** for one step or a character, **15 s** for a pipeline project or a publish job.
92`get_flow_run` returns `poll_again_in_seconds` while it is going and `null` when it is
93finished *or* waiting on the user (`waiting_on_user: true` → `approve_flow_run` /
94`reject_flow_run` / `retry_flow_node`). The `*_and_wait` variants check every 10 s and
95return a snapshot after 10 minutes — **the work keeps going** either way. A paid run is
96detached from the MCP request: disconnecting never stops it, and the result lands in the
97account.
98
99### Core workflows
100
101**Run a ready-made flow** — `list_flows` → `get_flow` for the input schema →
102`get_flow_price` → `launch_flow(flow_id, inputs, brand_id)` → poll `get_flow_run` →
103`get_flow_run_video_url` for a signed mp4 (24 h). Pass `approval_mode: true` to pause at
104review gates. Not happy with one step? `list_flow_run_steps` prices a re-run from each,
105`change_flow_run_step` re-runs from there with feedback as a new run.
106
107**Generate a single clip or image** — `generate_video` / `generate_image` return a
108`flow_run_id`; poll `get_flow_run` on it, then call `save_video` / `save_image` **with the
109same id** to mint the library entry. Generation alone does not save it. `generate_video`
110takes `prompt`, `model` (default `veo-3.1`), `aspect_ratio` (`9:16` default), `duration`
111(1–60 s, default 5), `reference_url`, `brand_id`, `style_id`.
112
113**Brand and style on every generation** — `brand_id` is tri-state on `generate_image`,
114`generate_video`, `create_character` and `run_flow_step`: **omit** = keep the user's
115last-used brand, `null` = explicitly none, an id from `list_brands` = that brand.
116(`launch_flow` differs: omitting it means *no* brand.) `style_id` comes from
117`list_styles`; omit for none — an unknown or foreign id is a 404, never a silent fallback.
118
119**Build a canvas** — `add_canvas_step(flow_id, kind, prompt, settings)` places an image /
120video / text / audio card **without running it**, `connect_steps` wires a result into
121another card's parameter (`"input"` on the Joiner puts a clip in the cut; `"audio"`,
122`"subtitles"` are its other slots), `update_step_settings` patches `styleId` / `brandId`
123(`"none"` = unbranded), and `run_flow_step` generates one card (charged, 1 CR floor).
124System templates are read-only — fork one in the app first. `export_flow` → edit →
125`import_flow` round-trips a flow as `.flow.json`.
126
127**Publish** — `list_channels` for the connected account id, `list_publishable` for what
128can go out, then `publish_video_to_youtube(video_id, title, description, privacy,
129youtube_account_id)` or `publish_video_to_tiktok`, and poll `get_publish_status`.
130
131## Examples
132
133### Example 1: Priced, polled, published
134
135> "Turn this week's changelog into a 30-second vertical short for our YouTube channel."
136
137```text
1381. get_credit_balance → 240 CR
1392. list_flows → get_flow("shorts-explainer") → inputs: topic, script, duration
1403. get_flow_price(flow_id, inputs) → { price_cr: 30, balance_cr: 240, enough: true }
141 → tell the user "this run costs 30 CR of your 240" and wait for a yes
1424. list_brands → brand_id
1435. launch_flow(flow_id, inputs, brand_id) → { run_id, review_url, charged_credits: 30,
144 poll: { tool: "get_flow_run", interval_seconds: 10 } }
1456. get_flow_run(run_id) every 10 s → status "running" … → "completed"
1467. get_flow_run_video_url(run_id) → signed .mp4 (24 h) + review_url for the app
1478. list_channels → publish_video_to_youtube(video_id, title, privacy: "unlisted", youtube_account_id)
1489. get_publish_status every 15 s → "published"
149```
150
151### Example 2: The batch stops instead of looping
152
153```text
154> get_flow_price(flow_id, inputs) → { price_cr: 30, balance_cr: 45 }
155 12 products × 30 CR = 360 CR against a 45 CR balance — say so before launching anything.
156
157> launch_flow(...) # product 2
158{ "error": "insufficient_credits", "needed_cr": 30, "balance_cr": 15,
159 "topup_url": "https://app.vidvibe.io/billing" }
160```
161
162Correct behaviour: relay the numbers and the link, **stop the batch** (a retry just fails
163again), and report what did launch — `run_id` for product 1 is real work already paid for
164and still running server-side. Free reads still answer the rest: `list_flow_runs`,
165`list_videos`, `get_credit_balance`.
166
167## Guidelines
168
169- **Money is real.** Never launch a paid tool the user did not ask for. `get_flow_price`
170 first, state `price_cr` vs `balance_cr`, multiply out batches, and get a yes. Prefer one
171 `launch_flow` over re-running steps one at a time.
172- **Generation is two calls.** `generate_video` / `generate_image` start work; the library
173 entry only exists after `save_video` / `save_image` with the same `flow_run_id`.
174 Reporting "done" before saving loses the result.
175- **Publishing is public.** `publish_video_to_youtube` / `publish_video_to_tiktok` push to
176 a live channel. Quote the title, description and privacy, get approval, and prefer
177 `privacy: "unlisted"` for a first pass.
178- **Respect the poll hint.** Polling faster than `interval_seconds` gains nothing and
179 risks rate limits; the work is detached from the connection, so waiting is safe. If a
180 run reports `waiting_on_user: true`, ask the user — do not auto-`approve_flow_run`, and
181 treat `continue_flow_run_yolo` (skip all remaining gates) as needing an explicit yes.
182- **Deletes are real deletes.** `delete_video`, `delete_image`, `delete_character`,
183 `delete_brand` and `permanent_delete` remove the user's work; `permanent_delete` empties
184 trash beyond recovery. Name exactly what goes and confirm first.
185- **Show links, not blobs.** Signed media URLs expire in ~24 h; every image/character
186 result also carries a permanent `app_url` (`/share/image/:id`, `/share/avatar/:id`,
187 `/share/video/:id`) — give that. Images come back as inline MCP `image` blocks; video
188 cannot be played in chat, so video tools attach a **poster frame** and say so in
189 `inline_preview`. A client cannot open a URL on its own — link it for the user.
190- **Read the error instead of retrying.** `insufficient_credits` / `subscription_expired`
191 carry the price, the balance and the top-up URL. "API key lacks permission" means a
192 missing scope (or a non-admin token on a `blog_*` tool), not a bad request.
193- **IDs are UUIDs scoped to the token's account** — a 404 on a valid-looking id usually
194 means it belongs to another account.
195- The token acts as the user: its runs, uploads and publishes appear in their library and
196 spend their credits. Never commit it, scrub it from logs, and treat a 401 as revoked —
197 ask them to reissue in Settings → API.