I wanted to share how you can use n8n’s built-in MCP Client Tool to connect to the Ssemble AI Clipping MCP server and automate short-form video creation from YouTube videos — no custom nodes needed.
What is Ssemble AI Clipping?
Ssemble is a video processing platform that takes YouTube videos and automatically creates TikTok/Reels/Shorts-style clips with:
For anyone looking for an alternative that works with both MCP and direct HTTP Request nodes, I’ve been using WayinVideo API (https://wayin.ai/api) for the same kind of workflow.
A few things that work well for me:
AI Clipping — automatically picks the best viral moments, adds captions, reframes to 9:16 — all in one API call
Find Moments — you can describe what you want in plain English like “product demo” or “funny reaction” and it finds those exact clips
No MCP required — works directly with n8n’s HTTP Request node, so it runs on both Cloud and self-hosted without any extra setup
Processing time is around 90 seconds for most videos — much faster than 5–30 minutes
The flow is simple:
Form Trigger / Webhook → POST video URL to WayinVideo API → Wait 90s → GET clips → each clip has download link, viral score, title, tags
Also supports YouTube, Zoom, TikTok, Vimeo, and more — just paste the URL.
Nice guide — the webhook callback tip from Benjamin is a good catch, polling with Wait nodes does eat up execution slots fast.
Been using a similar setup for YouTube Shorts creation but without the MCP layer. The one thing that bugged me about MCP-based tools is they only work on self-hosted n8n with that environment variable set — which cuts out anyone on n8n Cloud.
What I switched to uses plain HTTP Request nodes so it runs anywhere — Cloud or self-hosted, no extra config needed. You just POST the YouTube URL, get back clips ranked by viral score with titles, timestamps, and download links. It also does 9:16 auto-reframe and animated captions in the same call, so no separate editing step.
The big difference I noticed is processing time — most videos come back in around 90 seconds instead of 5–30 minutes, which makes the polling pattern much simpler to manage.
Also has a Find Moments feature where you describe what you want in plain English — like “product demo” or “audience laughing” — and it pulls exactly those clips. Useful when you don’t just want the top viral moments but something specific.