LeClap

MCP serverMedia

Turn one JSON template into a finished video. Once added, your AI can compose and render videos from a template, producing the same result on every run. Everything runs locally on your computer and no generative model is involved.

Unavailable. This server has no hosted endpoint yet, so ahel can't serve it.

Add it, then give your AI a JSON template describing the video you want. It will compose and render that video locally.

What your AI can do with it

  • Compose a video from a single JSON template
  • Render that template into a finished video
  • Reproduce the exact same video on every run
  • Keep the whole rendering process on your local machine
  • Render without a generative model involved

From the project's README

As published by heristop/leclap in README.md.

Deterministic, on-device, agent-callable video — composed by prompt or by hand.

Describe a video in one JSON template — sections, filters, music, overlays — then render that same template on a phone (React Native, on-device) or in the browser (WebAssembly). No upload, no server, no generative model: the render is deterministic and reproducible, not sampled.

Quick start · Templates · Library API · Architecture · Docs


✨ What is LeClap?

One JSON template. It renders on Node, in the browser via WebAssembly, and natively on-device on React Native — same template, same pipeline, reproducible run after run on a given platform. No upload, no server, no generative model.

🎥 Demo

Two looks at LeClap — a finished clip rendered from a single JSON template, and the mobile app composing one fully on-device.

🤔 Why LeClap?

Generative tools can't reproduce a result twice. Cloud renderers can't run in your user's pocket. Remotion renders without a server, but needs a browser engine to do it — LeClap links FFmpeg into the app itself.

LeClapRemotionShotstackGenerative video
Renders in a native app, no browser✅ React Native, FFmpeg linked in❌ needs a WebCodecs browser❌ cloud API❌ cloud API
Runs with no server✅ in the browser, since 4.0.491❌ cloud API❌ cloud API
Same input → same output✅ per platform¹✅ if you avoid randomness⚠️ not documented❌ sampled, not rendered
Authored by an AI agent✅ MCP⚠️ an LLM writes React code✅ MCP (cloud)✅ prompt

¹ Per platform, not across them: Node and the browser encode with libx264, Android with libopenh264, iOS with h264_videotoolbox, and the on-device build drops boxblur and rewrites eqlutyuv. Same composition, different pixels.

LeClap vs Remotion → — the reasoning behind each row, the full caveats, every claim sourced to vendor docs, and when to pick Remotion instead.

🧰 Highlights

HighlightWhat it means
🧩 Template-drivenOne JSON descriptor → a complete video. No imperative FFmpeg wrangling.
🌍 Runs everywhereNode.js, browser (WASM), and React Native — one shared core, reproducible on each (the encoder differs per platform, see above).
📹 Capture → compose → renderRecord from the camera, trim/crop, mix music, add transitions, and render — captured, edited, and composed on-device.
🤖 Agent-callableAn MCP server lets an AI agent author & render a template — no LLM in the output path, so it's rendered, not sampled.
🎨 Premium out of the boxA bundled creative kit of polished, on-device-safe templates — by prompt or in the visual builder.
🧱 Typed & validatedZod-validated templates, strict TypeScript, dependency-injected architecture.

🚀 Quick start

💡 Recommended: mise. mise install provisions the exact pinned toolchain — Node 24, pnpm 11, FFmpeg 8.1.1, and Rust — so every contributor and CI run identical versions. Managing versions yourself? Bring Node ≥ 24 and pnpm 11.

git clone https://github.com/heristop/leclap.git
cd leclap
mise install     # Node 24, pnpm 11, FFmpeg 8.1.1 + Rust
pnpm install

Then pick an app:

pnpm app:web      # web app — compiles videos in-browser (no server)
pnpm app:expo     # Expo mobile app — compiles fully on-device (no server)

Or use the CLI — @leclap/cli is the leclap dev tool:

npx @leclap/cli init my-video         # scaffold a starter project
npx @leclap/cli render template.json  # render it (`leclap diagnose` checks your FFmpeg)

Or drive it from an AI agent: the @leclap/mcp server exposes the engine as MCP tools — schema → validate → render — with no LLM in the output path.

📦 Monorepo

pnpm workspaces (apps/*, packages/*) — no turbo/nx. The root is a private orchestrator (leclap); ffmpeg-video-composer, @leclap/cli, and @leclap/mcp are published to npm. The web and mobile apps both run the same core — the mobile app drives it fully on-device via the embedded native engine (no server), the web app in-browser via WASM.

PackageDescription
ffmpeg-video-composerThe library — cross-platform composition engine (Node, browser, WASM).
@leclap/cliThe CLI — the leclap dev tool: scaffold (init), render, diagnose.
@leclap/creative-kitShared creative catalog — templates, partials, fonts, media, bundled assets.
@leclap/mcpMCP server — the engine as agent-callable tools (schema/validate/compose/probe).
@leclap/webReact 19 + Vite + Tailwind — in-browser FFmpeg via WASM (reference).
@leclap/expoExpo / React Native — on-device compiles via the native engine (reference).
ffmpeg-engineRust engine embedding FFmpeg fftools for on-device compiles.

🧩 Templates & library

A template is a Zod-validated JSON descriptor — a global block plus an ordered list of sections, each a clip with its own inputs → maps → filters pipeline and {{ variable }} placeholders. Start from a creative-kit template and tweak text, colors, and media — by prompt (MCP) or in the visual builder.

📚 Documentation

🤝 Contributing & License

Issues and PRs welcome. Keep changes formatted (pnpm fmt) and lint-clean (pnpm lint) before committing. The code is licensed under the MIT License.

Brand & trademark. The MIT License covers the code, not the brand. The LeClap name and logo are trademarks of Alexandre Mogère — you can fork and reuse the code freely, but please give your fork a different name and don't imply endorsement. See TRADEMARK.md for details.

Signals

GitHub stars
24
Forks
1
Last commit
Aug 2026
Hacker News mentions
20
Advanced
Delivery
video MCP server → your ahel gateway (mcp.ahel.ai) → every connected AI client.
Catalog kind
mcp-server
Gateway key
dev-leclap-video
Source
github.com/heristop/leclap