You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(website): add the launch film and a production use cases section to the MCP page (#15305)
## Summary
Adds the two videos asked for in the launch thread, on top of #15240:
the Comfy MCP launch film under the capabilities heading, and a new
"Production use cases." section below it.
## Changes
- **What**: `FeatureRows01` gains an optional `media` slot;
`ToolsSection` fills it with the 16x9 launch film (autoplay, muted,
loop, corner play/mute toggles). New `UseCasesSection` renders a
heading, one-line subtitle, and the narrated walkthrough as
click-to-play behind its own title-card poster — no autoplay, since it
has a voiceover. Both sections hydrate with `client:visible` so the
controls work. The setup subtitle now breaks before "Add the server
yourself".
- **Assets**: launch film from the Air board (`COMFY_MCP_16x9`, 33.9s,
re-encoded to 4.9 MB); walkthrough from the launch blog (`short with
voice over`, 96.3s, 14 MB); poster is frame 1 of the walkthrough.
Copy added in en and zh-CN.
## Review Focus
- **The media is not on the CDN yet.** `launch-film.mp4`,
`production-use-cases.mp4` and `production-use-cases-poster.webp` still
need uploading to `gs://comfy-org-videos/website/mcp/`. Until then both
players 404 on any deploy built from this branch, including this PR's
Vercel preview.
- Copy on the new section — "Production use cases." and its subtitle are
a first pass.
- `client:visible` on `ToolsSection` is new; it was static before
because every video there had `hideControls`.
## Screenshots
Standalone preview with the media served from the deployment itself, as
a stand-in for the pending CDN upload:
https://website-frontend-16jmxfsd8-comfyui.vercel.app/mcp
Copy file name to clipboardExpand all lines: apps/website/src/i18n/translations.ts
+22-2Lines changed: 22 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2152,9 +2152,9 @@ const translations = {
2152
2152
'zh-CN': '配置 Comfy MCP'
2153
2153
},
2154
2154
'mcp.setup.subtitle': {
2155
-
en: 'Pick where it runs: Comfy Cloud GPUs, or your own machine. Add the server yourself or ask your agent to install it, and the full ComfyUI toolset lands in your chat.',
2155
+
en: 'Pick where it runs: Comfy Cloud GPUs, or your own machine.\nAdd the server yourself or ask your agent to install it, and the full ComfyUI toolset lands in your chat.',
en: 'Everything ComfyUI can do,\nnow available as tools.',
2379
2379
'zh-CN': 'ComfyUI 能做的一切,\n现在都可作为工具调用。'
2380
2380
},
2381
+
'mcp.tools.film.alt': {
2382
+
en: 'Comfy MCP launch film: an agent driving ComfyUI workflows end to end',
2383
+
'zh-CN': 'Comfy MCP 发布影片:智能体端到端驱动 ComfyUI 工作流'
2384
+
},
2381
2385
'mcp.tools.1.title': {
2382
2386
en: 'Generate anything',
2383
2387
'zh-CN': '生成任意内容'
@@ -2456,6 +2460,22 @@ const translations = {
2456
2460
'zh-CN': 'Comfy MCP 将工作流变成可在浏览器中分享的应用'
2457
2461
},
2458
2462
2463
+
// MCP – UseCasesSection
2464
+
'mcp.useCases.heading': {
2465
+
en: 'Production use cases.',
2466
+
'zh-CN': '生产级用例。'
2467
+
},
2468
+
'mcp.useCases.subtitle': {
2469
+
en: 'One prompt, a real campaign: batch pack shots for every SKU, character sheets from a saved workflow, outputs filed straight back into your project folders.',
0 commit comments