adobe-premiere-cc-mcp
This server lets an AI assistant control Adobe Premiere Pro programmatically, covering the entire editing workflow from project setup to export. Key capabilities include:
Project & Media: List project items, import media, create bins, check media link state, attach proxies, relink offline media, and save the project.
Sequence Management: List and switch sequences, create sequences from items, get timeline details (resolution, frame rate, clips, effects), control playhead, and manage in/out points and work area.
Timeline Editing: Add, move, split (razor), trim, remove (ripple/lift), enable/disable clips, adjust speed and scale, apply fades, make J/L split edits, and mute/unmute tracks.
Audio: Set clip levels, measure LUFS loudness, normalise loudness, duck music under dialogue, apply dialogue chain (HPF+comp), and detect audio faults (clipping, silence, noise).
Color Grading: Analyse frames and clips, read scopes, apply Lumetri Basic Correction (exposure, contrast, highlights, shadows, etc.), match shots, copy grades, and generate contact sheets.
Effects & Transitions: List and apply effects, add transitions, set Warp Stabilizer mode and scale, check stabilizer status.
Beat Detection & Rhythm: Detect beats in audio, mark them as sequence markers, and cut video tracks to the beat grid automatically.
Analysis & QC: Check edits for common problems (over-scaled clips, un-analysed stabilisers, audio spikes, disabled clips, gaps, muted tracks), critique against platform norms, perform broadcaster-level delivery checks, and detect action peaks.
Export: Export still frames (PNG) or full sequences using built-in encoder (no Media Encoder required), and list export presets.
Advanced Scripting: Execute raw ExtendScript for any operation not covered by the typed tools.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@adobe-premiere-cc-mcpExport the active sequence to H.264."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
adobe-premiere-cc-mcp
An MCP server for driving Adobe Premiere Pro from an AI assistant. Inspect a project, cut and arrange a timeline, grade by measurement rather than by eye, mix and normalise audio to a real loudness target, and export frames or finished video.
The design rule is one tool per expert capability, not one per API call.
analyse_clips renders each shot and measures it; it does not expose getClipScale
and leave the thinking to you. The expertise lives inside the tool, which is why the
surface stays small while the capability grows.
The second rule is that every write verifies itself. A tool reads the value back, and the ones that cannot be checked say so rather than reporting a cheerful success. That matters because several Premiere scripting calls return "No Error" while doing nothing at all.
Built and verified against Premiere Pro 26.2 on Windows. Every tool listed below has been run against a real project, not just typechecked, including the destructive ones.
What makes it different
Measurement instead of guesswork.
analyse_clipsrenders each clip, isolates it from the tracks above, and reports its black point, contrast and colour cast, so a grade follows numbers rather than a hunch.analyse_loudnessrenders the audio and measures true LUFS to ITU-R BS.1770, because Premiere exposes no loudness figure to a script at all.Tools that admit failure.
set_clip_speedreads the speed back off the clip and reports when Premiere clamped it.get_stabilizer_statussays plainly that a clip was never analysed.export_sequenceconfirms the file exists before claiming success.A verdict you can act on.
critique_editjudges a sequence against published short form norms: what happens in the opening seconds, how often the picture changes, and whether the message survives muted playback.Nothing borrowed. The CEP panel that carries commands into Premiere was written from the protocol for this project and is signed with its own certificate.
Capabilities, not wrappers. Other Premiere MCP servers ship several hundred to over a thousand tools, most of them one scripting call each, which leaves every expert decision to the model. Every tool's name, description and schema is also sent on every request, so a large surface is paid for before any work happens. These tools cost roughly 4,400 tokens of that budget and each one does a whole job.
Related MCP server: Premiere Pro MCP Server
Documentation
Recipes — session start, grading, loudness, partial export, and a nine up grid built end to end.
Grading — how to read the measurements and choose a correction.
Contributing — the development loop and what a good change looks like.
Security — what this server can do to your machine, and the signing model.
Roadmap — what is done, what is blocked, and the Premiere limits found so far.
Paths may be passed with forward or backslashes; they are normalised before they
reach Premiere, because exportAsMediaDirect fails with a bare
Error: Unknown Error on forward slashes.
How it works
assistant <--stdio--> MCP server <--temp files--> CEP panel <--evalScript--> PremiereThe server writes cmd_<id>.jsx into a shared temp folder. The CEP panel inside
Premiere claims it with an atomic rename, evaluates it, and writes
res_<id>.json back. Anything slower than two seconds also gets a
busy_<id>.json heartbeat, which is how the server tells "still working" apart
from "the panel is not running".
Requirements
Node.js 20 or newer, tested on 20 and 22
Adobe Premiere Pro 2020 or newer
Adobe Media Encoder is not required; exports use Premiere's own encoder
Setup
npm install
npm run build
npm run sign-panel # signs panel/ into artifacts/PremiereMcpLink.zxp
npm run install-panel # installs it and sets PlayerDebugModeThen restart Premiere. The panel starts itself when Premiere becomes active, so
there is nothing to open by hand; Window > Extensions > Premiere MCP Link shows
its status and log if you want to watch it.
Signing needs Adobe's ZXPSignCmd in tools/, from
Adobe-CEP/CEP-Resources
(ZXPSignCMD/4.1.103/win64). npm run sign-panel generates a self-signed
certificate the first time. Premiere refuses unsigned extensions even with
PlayerDebugMode enabled, so signing is not optional.
The server and panel meet in %TEMP%\premiere-mcp-link. Override it on both
sides with PREMIERE_MCP_BRIDGE_DIR if you need to run two setups side by side.
Register it with your MCP client, for example:
{
"mcpServers": {
"premiere": {
"command": "node",
"args": ["C:/BINUS/SELF/adobe-premiere-cc-mcp/dist/index.js"]
}
}
}Then ask the assistant to call ping.
Tools
64 tools.
Tool | Parameters | What it does |
| — | Check that Premiere is running and the bridge panel is alive. |
|
| Picture of the active sequence: resolution, frame rate, duration, and every clip on every track with its node ID, timing and Motion scale. |
|
| Everything about one clip: timing, in-point, and every effect with all of its property values and keyframe state. |
| — | List every sequence in the project and say which one is active. |
|
| Make a sequence the active one, so every other tool operates on it. |
|
| Create a new sequence built from one or more project items, and confirm it exists. |
|
| Inspect the whole sequence and report the problems that quietly ruin an edit: clips scaled above 100 percent, stabilisers that were never analysed, audio above unity or with keyframes that spike, disabled clips, gaps on the main video track, muted tracks, and clips missing a grade while their neighbours have one. |
|
| Judge the active sequence against what actually holds attention on a given platform, and say whether it is ready to post. |
|
| One pass over a whole sequence for judging it rather than editing it: writes evenly spaced stills across the running time, measures each one, and reports the sequence settings alongside them. |
|
| Export one still per clip on a video track, taken from the middle of each clip, and return the file paths. |
|
| Measure the image at a point in the sequence and suggest Basic Correction moves. |
|
| Measure one frame per clip on a video track and report the numbers side by side, so shots can be grouped by how they actually look rather than by eye. |
|
| Read the video scopes at a point in the sequence, the way a colourist would. |
|
| Match one clip's grade to another by measurement rather than by eye. |
| — | Current playhead position in the active sequence, in seconds and as timecode. |
|
| Move the playhead to a time in seconds and read the position back. |
| — | Read the sequence in and out points and the work area, the two ranges that decide what a partial export covers. |
|
| Set the sequence in and out points, then read them back. |
|
| Mute or unmute a video or audio track and read the state back. |
| — | List every marker on the active sequence with its time, name and comment. |
|
| Add a marker to the active sequence at a given time, then confirm it exists. |
|
| Delete the marker nearest a given time, within a small tolerance, and report how many remain. |
|
| Find the tempo of the sequence audio and return the beat grid, without changing anything. |
|
| Write sequence markers on the beat grid so the cuts can be placed by eye or by tool. |
|
| Razor a video track on the beat grid, so every cut lands on the music. |
|
| Turn a straight cut into a J or L cut, the technique that most separates professional cutting from amateur. |
|
| Measure movement across a clip and report where the action peaks, so a cut can land on the movement rather than near it. |
|
| Run the quality control pass a broadcaster would run before accepting a file. |
|
| Render the mix and find the audio faults that ruin a delivery: passages clipped into distortion, stretches of dead silence, and a noise floor high enough to hear. |
|
| Pull a music bed down under the talking and let it back up in the gaps, the way a mixer rides a fader, instead of leaving one flat level for the whole timeline. |
|
| Put the standard dialogue chain on a voice track and prove it did something: a high pass to kill rumble, then compression to even out the level. |
|
| List the project panel contents: bins and media, with the node ID of each. |
|
| Import one or more media files into the project panel and confirm the item count grew. |
|
| Create a bin in the project panel and confirm it exists. |
|
| Report the link state of every media item: whether it is offline, where its media actually lives on disk, and whether a proxy is attached. |
|
| Attach a proxy file to a project item, so Premiere edits against the light version while keeping the original for export. |
|
| Point an offline project item at its file in a new location and confirm it came back online. |
|
| Enable or disable a clip. |
|
| Cut every clip on a track at the given time, the same as the razor tool. |
|
| Remove a clip from the timeline. |
|
| Place a project item onto a track at a given time and confirm the clip count grew. |
|
| Move a clip to a new start time on its own track and confirm it landed. |
|
| Change a clip's playback speed. |
|
| Trim a clip's start or end on the timeline and confirm the new duration. |
|
| Set a clip's Motion scale and read it back to confirm. |
|
| Apply the same Lumetri Basic Correction to a group of clips in one pass, then read every value back. |
|
| Set Lumetri Basic Correction values on a clip and read them back. |
|
| Copy one clip's Lumetri Basic Correction onto other clips as a starting point, then read every value back. |
| — | Read the Lumetri Basic Correction values of every graded clip in one call, so a grade can be compared across shots without inspecting clips one at a time. |
|
| Set a clip's audio level in decibels and read it back. |
|
| Measure the sequence loudness and then actually move the audio to hit the target, in one pass. |
|
| Measure how loud the sequence actually is, in LUFS to ITU-R BS.1770, by rendering its audio to a temporary WAV and analysing it here. |
|
| Put a clean fade in and/or out on a clip: Opacity for video, Volume for audio. |
|
| List every video or audio effect name Premiere can apply. |
|
| Add a video or audio effect to a clip by name and confirm it attached. |
|
| List every video transition name Premiere can apply, for use with add_transition. |
|
| Add a video transition at a clip's head or tail and confirm it appeared on the track. |
| — | Report Warp Stabilizer state for every clip that has it. |
|
| Set Warp Stabilizer to 'no_motion' (locked static frame, what static-camera edits need) or 'smooth_motion' (keeps camera movement, smoothed). |
|
| Write a full resolution still of the sequence at a given time. |
|
| List Adobe .epr export presets on disk, including the ones Premiere ships itself. |
|
| Render the active sequence to a file using Premiere's own encoder; Adobe Media Encoder is not required. |
| — | Save the current project. |
|
| Escape hatch: run raw ExtendScript in Premiere for anything the typed tools do not cover. |
Premiere behaviours worth knowing
These cost real debugging time and are encoded in the tools:
getVideoEffectList()returns an array of name strings, not objects. Entries have no.nameand the array has no.numItems. Effect objects must come fromgetVideoEffectByName().Keyframe times are absolute source time. Stills and graphics sit near 3600s, so a keyframe written at
0.5lands outside the clip and never fires.New keyframes interleave with existing ones rather than replacing them, which is how a fade ends up spiking to full mid-clip. Clear before writing.
getKeys()returnsundefined, not[], when a property has no keyframes.Warp Stabilizer never re-analyses from a script. A clip can report the mode you set while being completely unstabilised. The tell is the auto-scale display name: a percentage means solved, a bare label means not analysed.
QE track item indexes count empty gaps, so they do not match DOM clip indexes. Match on start time.
Creative Looks cannot be set by script. The name property accepts a string but the LUT never loads. Pick looks in the Lumetri panel; only intensity is scriptable.
exportAsMediaDirectreturns "No Error" even when it writes nothing, so the file has to be checked on disk.
Development
npm run dev # tsc --watch
npm test # vitest
npm run check # typecheck + tests, no build
npm run build # emit dist/
npm run verify # run every tool against the open projectnpm run verify covers the read-only tools. Add -- --destructive to also exercise
splitting, removing, importing and speed changes; that edits the open project, so
point it at a scratch one.
Testing against a live Premiere without restarting your assistant
An MCP client loads the server once at startup, so a rebuild does not reach it
until the client restarts. npm run smoke skips the client entirely and drives
the built server over stdio the same way:
npm run build
npm run smoke # read-only sweep
npm run smoke -- --list # tool names
npm run smoke -- ping
npm run smoke -- get_clip '{"node_id":"000f4241"}'
npm run smoke -- export_frame '{"output_path":"C:/tmp/check.png","time_seconds":12}'That is the fast loop: edit, npm run build, npm run smoke -- <tool>. Restart
the assistant only when you want the new tools exposed to it.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityFmaintenanceA Model Context Protocol (MCP) server for Adobe After Effects that enables AI assistants and other applications to control After Effects through a standardized protocol.1384546MIT
- AlicenseBqualityDmaintenanceAn unofficial MCP-compatible server that enables advanced automation, querying, and remote control of Adobe Premiere Pro projects for power users, workflow automation, and AI integration.1514MIT
- AlicenseNot gradedqualityBmaintenanceProvides MCP servers for AI-driven video editing. Enables offline editing of CapCut drafts and remote control of Adobe Premiere Pro via UXP plugin, with shared media analysis for beat detection and transcription.MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that exposes the complete DaVinci Resolve scripting API, enabling AI assistants to control DaVinci Resolve programmatically with over 440 tools for project management, timeline editing, color grading, rendering, and more.5MIT
Related MCP Connectors
MCP server for Clipkit — gives AI agents a video toolbox via the Clipkit schema.
MCP server for Google Veo AI video generation
MCP server for Wan AI video generation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MarvelCollin/adobe-premiere-cc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server