ae-mcp
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., "@ae-mcpcreate a 1920x1080 comp and animate a text layer saying 'Hello' with a fade in"
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.
ae-mcp
An advanced MCP server for Adobe After Effects. It gives an assistant an editor's toolkit: read a project, create and rig layers, set keyframes with real speed curves, animate text, build vector shapes, apply effects and expressions, drive native menus — and see the result through snapshots returned right into the conversation.
Architecture
Assistant (MCP)
│ stdio
┌─────▼──────────────────────────────┐
│ ae-mcp server (Node/TypeScript) │ easing, SVG, presets, schemas
└─────┬──────────────────────────────┘
│ 1. HTTP 127.0.0.1:9782 (CEP transport, primary)
│ 2. watched JSON files (ScriptUI transport, fallback)
┌─────▼──────────────────────────────┐
│ bridge inside After Effects │ CEP panel or ScriptUI panel
└─────┬──────────────────────────────┘
│ $.evalFile + AEMCP.runFile()
┌─────▼──────────────────────────────┐
│ ExtendScript kernel (AEMCP) │ ~4,000 lines, 60+ commands
└────────────────────────────────────┘Three principles:
Heavy lifting stays in Node. SVG conversion, easing math, animation presets — all prepared server-side; the ExtendScript kernel just executes.
Exchanges go through files. Requests and responses travel as JSON on disk, avoiding
evalScript's escaping and size limits. HTTP only triggers the run.Everything is atomic. Each request — even a batch of 50 operations — runs inside a single undo group: one
Ctrl+Zreverts it all.
Bridge auth token
The CEP panel's HTTP server listens on 127.0.0.1 and triggers commands in After Effects
(including ae_eval, which runs arbitrary ExtendScript). To stop a web page open in the
browser while AE is running from driving the bridge via a plain fetch(), the panel
generates a random token on first launch, stored in Documents/ae-mcp/bridge/token.txt and
republished in bridge.json (token field). Every POST /run or POST /reload must carry
the X-AE-MCP-Token header; without it the server returns 401. The MCP client
(src/bridge/client.ts) reads the token from bridge.json and sends it automatically — no
manual setup needed. The token persists as long as token.txt exists; delete it to force
regeneration on the next panel launch.
The fallback file transport (req//res/) has no token: it relies on the OS permissions of
the user's Documents folder, which already block access from another account.
Related MCP server: After Effects MCP Server
Install
npm install
npm run build
npm run install-bridge # installs the CEP extension + ScriptUI panel + kernelThen, in After Effects:
CEP transport (recommended) — restart After Effects. The bridge starts on its own, no window.
Window > Extensions > AE MCP Bridgeshows status, port, and log.ScriptUI transport (no restart) —
File > Scripts > Run Script File…, then pickDocuments/ae-mcp/AE MCP Bridge.jsx. The panel starts polling immediately.
Register the server with your MCP client:
claude mcp add ae-mcp -- node "/path/to/ae-mcp/build/index.js"
npm run install-bridgealso copies the panel intoScripts/ScriptUI Panelsof any detected After Effects install, making it dockable. That copy lives underProgram Filesand needs admin rights; if it fails, nothing else is affected.
Tools
Tool | Role |
| Bridge state, AE version, project, comps |
| Docs: property paths, matchNames, easings, shapes, animators |
| Inventory, import (images, video, PSD/AI as comp), folders, save |
| Create, read, adjust, duplicate, precompose, markers |
| Every layer type, every attribute, deep read |
| Read/write any property by path; expressions |
| Keyframes with named curves, relative values, hold, offset |
| Text content and formatting, text animators, fonts |
| Native vector trees, Bézier paths, SVG conversion |
| Find, apply, adjust, and animate effects |
| Rect/ellipse/Bézier masks, modes, feather |
| Ready-made animation presets, staggered sequencing |
| Controls, expression links, alignment, parenting, Essential Graphics |
| Snapshot returned into the conversation, render queue |
| Native menu commands, playhead, selection |
| Raw access to every kernel command, batched with references |
| Arbitrary ExtendScript (last resort) |
What sets this apart
Real speed curves. ease: "expo.out" doesn't just apply Easy Ease — the Bézier curve
is converted into per-dimension influence and speed, computed from the segment's average
velocity, exactly like hand-tuning the Graph Editor.
Relative values. A slideIn uses mode: "offset": the animation builds on the layer's
existing position instead of overwriting it. Same idea for scale with mode: "multiply".
SVG becomes real shapes. ae_shape action=svg converts path, rect, circle,
ellipse, line, polyline, polygon, groups and their transforms into native, editable
shape layers, with fills, strokes, dashes, and arcs approximated in Bézier.
A visual feedback loop. ae_render action=snapshot renders the comp and returns the
image directly: the assistant compares its output to the reference and corrects, instead of
working blind.
Atomic batches with references. A whole scene builds in one round trip, each step able
to reuse the previous one's result via {{0.index}} or {{prev.id}}.
Development
npm run build # kernel + TypeScript
npm run build:kernel # kernel only (also checks its syntax)
node scripts/ae.mjs status # bridge status
node scripts/ae.mjs layer.list '{"comp":"My Comp"}'
node scripts/selftest.mjs # full validation against AE
node scripts/selftest.mjs --keep --only=shape # subset, keeps the compThe kernel is split into modules under host/kernel/ and concatenated into
host/aemcp-kernel.jsx by scripts/build-kernel.mjs. It must stay ES3-compatible: no
let/const, no Array.prototype.map, no native JSON (a polyfill is provided in the
prelude).
Folder | Contents |
| MCP server: tools, transport, easing, SVG, presets |
| ExtendScript kernel source |
| CEP extension (HTTP panel) |
| ScriptUI panel (fallback bridge) |
| Build, install, diagnostic CLI, tests |
Troubleshooting
Symptom | Likely cause |
| Panel isn't open, or AE is closed. |
CEP panel missing from the menu |
|
|
|
File writes refused | Preferences > Scripts & Expressions > Allow Scripts to Write Files. |
Effect name not found | AE's UI isn't in English: use |
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
- AlicenseCqualityDmaintenanceEnables AI assistants to control Adobe After Effects for composition, layer, effect, preset, marker, and audio automation through a bridge panel.3066514MIT
- AlicenseCqualityDmaintenanceEnables AI assistants to control Adobe After Effects through the MCP protocol, including composition creation, layer management, and animation.13665MIT
- -licenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to control Adobe After Effects through a standardized MCP protocol, providing tools for composition creation, layer management, and animation.
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to control Adobe After Effects for project inspection, composition creation, and layer manipulation via a hardened bridge panel.
Related MCP Connectors
Build and run visual creative-production workflows from your AI agent.
Create and manage cinematic AI video renders through the Future Video Studio Agent API.
Make videos and docs with your AI agent — describe what you need, every output stays editable.
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/maximejacquart/ae-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server