AI/TLDR

Palmier Pro

A macOS video editor whose timeline an agent can drive over MCP

Video GenerationFreemium
Latest
v0.3.5
Updated
20 Jun 2026
Language
Swift
License
GPL-3.0 for the source published through v0.7.6; binary releases after v0.7.6 are proprietary
Coverage
1 story

What's new

v0.3.520 Jun 2026

v0.3.5 added transcript-based cutting, ripple-insert trims with linked audio and folder imports to the Swift-native macOS editor, and upgraded the in-app assistant to Claude Opus 4.8.

Latest news

Overview

Palmier Pro is a video editor for macOS written from scratch in Swift, with Premiere Pro as its reference point. Two things separate it from a conventional non-linear editor. First, generation is part of the timeline rather than a separate app: you can generate video and images with models such as Seedance, Kling and Nano Banana Pro directly into a clip. Second, the editor exposes its own actions to AI agents.

That second part runs over the Model Context Protocol. While the app is running it serves an MCP endpoint on localhost, and any MCP client — Claude Code, Codex or Cursor — can connect to it and act on the project you have open. The result is a hybrid workflow: you keep a real timeline in front of you and hand the repetitive parts to an agent that can see and change the same edit.

It is a native, Apple-Silicon-only application and requires macOS 26 (Tahoe) or later on an M-series Mac. The editor and the MCP connection are a free download; generation credits (image, video and audio generation, upscaling, cloud transcription and the in-app chat) are the paid part, with team and enterprise plans on request. Licensing changed mid-project: source published in the repository remains GPLv3, but binary releases after v0.7.6 are proprietary, and the repository no longer takes code contributions. The interface is localised into 15+ languages.

What it does

  • Swift-native macOS timeline editor with generative video and image models available inside the timeline
  • Built-in MCP server at http://127.0.0.1:19789/mcp that exposes editing actions to any MCP client
  • One-line setup for Claude Code, Codex and Cursor to attach to the running editor
  • Transcript-based cutting and ripple-insert trims with linked audio
  • Free editor and agent connection, with generation credits sold separately
  • Interface localised into more than 15 languages

Getting started

Install the app first — the MCP server only exists while Palmier Pro is running. It requires macOS 26 (Tahoe) on Apple Silicon.

Download and launch

Grab the latest DMG from the GitHub releases page (or palmier.io) and open the app. The MCP endpoint comes up with it.

texttext
https://github.com/palmier-io/palmier-pro/releases

Connect a coding agent

Register the local endpoint with whichever harness you use.

bashbash
claude mcp add --transport http palmier-pro http://127.0.0.1:19789/mcp
codex mcp add palmier-pro --url http://127.0.0.1:19789/mcp

Or configure Cursor by hand

Add the server to `~/.cursor/mcp.json`.

jsonjson
{
  "mcpServers": {
    "palmier-pro": {
      "type": "http",
      "url": "http://127.0.0.1:19789/mcp"
    }
  }
}

Commands and code are distilled from the project's own documentation — always check the official repo for the latest.

When to use it

  • Ask an agent to make the mechanical cuts while you keep control of the timeline
  • Generate a missing shot or still inside the edit instead of round-tripping through another tool
  • Cut a long recording down from its transcript rather than by scrubbing
  • Script repeatable edits against a real editor through MCP instead of a headless FFmpeg pipeline

How Palmier Pro compares

Palmier Pro alongside other open-source video generation tools AI/TLDR tracks, ranked by GitHub stars.

ToolStarsWhat it does
MoneyPrinterTurbo★ 125kA self-hosted WebUI, API and CLI that turns one topic or keyword into a finished short video — script, stock or generated footage, voiceover, subtitles and music.
OpenMontage★ 60.4kAn agentic video production system that gives a coding assistant 12 pipelines and 100+ tools to research, script, generate and render a video end to end.
HyperFrames★ 51.9kHeyGen's HTML-to-video renderer: author a composition in HTML, CSS and JS, preview it in a browser, then render the same input to a deterministic MP4 locally or on AWS Lambda.
Toonflow★ 15.8kInfinite-canvas workbench for AI short-drama production, taking a novel through chapter events, script, storyboards and video nodes.
Palmier Pro★ 14.4kA macOS video editor whose timeline an agent can drive over MCP
Hypit★ 11.8kA markup language and compiler that lets a coding agent rebuild a reference video as an editable workflow — footage, captions, B-roll and effects anchored to words rather than timestamps — and render variants in one command.
LTX-2★ 9.5kLightricks' official inference package for its LTX-2 audio-video model: a dozen pipelines covering text/image-to-video, keyframe interpolation, audio-to-video, retakes, dubbing and HDR/EXR, plus a LoRA trainer.
DramaClaw★ 6.2kSelf-hosted AIGC video engine pairing an infinite node canvas with an episode pipeline that carries a manuscript through assets, storyboards, shots, voice-over and export.