after-effects-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., "@after-effects-mcpCreate a 1920x1080 comp named 'Intro' with a red solid layer."
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.
After Effects MCP
A production-grade Model Context Protocol connector for Adobe After Effects. It gives MCP clients structured, validated control over projects, compositions, layers, properties, expressions, keyframes, imports, and the render queue—without exposing arbitrary scripting by default.
Architecture
MCP client ──stdio──> TypeScript MCP server ──authenticated localhost WebSocket──> CEP panel ──evalScript──> After EffectsMCP server: Node.js 20+, official MCP SDK, Zod validation, stdio transport.
Local bridge: loopback-only WebSocket, 256-bit shared token, request IDs, timeouts, heartbeat, one active AE session.
CEP extension: reconnecting panel with serialized command execution and visible activity.
Host engine: ES3-compatible ExtendScript, stable item IDs, match-name property paths, structured errors, undo groups, atomic batches.
No cloud service is involved. Project data and commands remain on the local computer.
Related MCP server: ae-mcp
Features completed
24 MCP tools covering connection, project discovery/save/import, compositions, layers, properties, expressions, keyframes, batching, and rendering.
Read-only/idempotent/destructive MCP annotations.
aftereffects://statusandaftereffects://guideMCP resources.Automatic shared config at
~/.after-effects-mcp/config.jsonwith owner-only permissions.Input limits, authenticated local transport, malformed-message handling, command timeouts, and raw scripting opt-in.
Adobe match-name paths for locale-independent property targeting.
One After Effects undo step per mutation; one undo step for an entire
ae_batch.macOS/Windows CEP installer script and distributable ZIP packaging.
Unit, protocol integration, and adversarial security test suites.
Requirements
Adobe After Effects 2020 (17.0) or newer.
Node.js 20 or newer.
An MCP client such as Claude Desktop, Claude Code, Cursor, or another stdio MCP host.
Install
npm install
npm run build
npm run install:extensionThe extension is unsigned. Enable CEP debug mode if Window → Extensions → After Effects MCP Bridge does not appear, then restart After Effects:
macOS
defaults write com.adobe.CSXS.12 PlayerDebugMode 1
# Repeat with CSXS.11 or CSXS.10 when required by your Adobe version.Windows (PowerShell)
reg add HKCU\Software\Adobe\CSXS.12 /v PlayerDebugMode /t REG_SZ /d 1 /fOpen Window → Extensions → After Effects MCP Bridge and keep the panel open. It reconnects automatically whenever the MCP server starts.
MCP client configuration
Build output is dist/src/server.js. Add the following to your client's MCP configuration, replacing the absolute path:
{
"mcpServers": {
"after-effects": {
"command": "node",
"args": ["/absolute/path/to/after-effects-mcp/dist/src/server.js"]
}
}
}The after-effects-mcp binary is also available when the package is installed globally or linked with npm link.
Tool reference
Tool | Purpose |
| Bridge/app status and capabilities |
| Project, selection, active item, render queue metadata |
| Search/list project tree with stable item IDs |
| Save or Save As |
| Import footage, projects, or sequences |
| Discover and inspect compositions |
| Create/edit composition settings |
| Inspect layers and top-level property groups |
| Create generated layers |
| Add footage/precomps to a comp |
| Edit layer state and ordering |
| Read/write any value property |
| Set keyframes and interpolation |
| Set/disable expressions and return expression errors |
| Render queue automation |
| Up to 100 operations in a single undo group |
| Optional raw ExtendScript; disabled by default |
Property path example:
["ADBE Transform Group", "ADBE Position"]Prefer Adobe match names (ADBE ...) over display names so automation works across localized After Effects installations.
Recommended workflow
Call
ae_connection_status.Discover IDs with
ae_project_itemsorae_comp_list.Read the target comp/layers/properties before writing.
Use
ae_batchfor related edits.Inspect results, then save explicitly.
Configuration
Environment variable | Default | Description |
|
| Bridge bind address; non-loopback refused |
|
| Bridge port |
| generated | Shared bridge token |
|
| Per-command timeout |
|
| Shared config location |
|
| Set to |
|
| Explicitly allow non-loopback binding (not recommended) |
If a custom config path is used, launch the CEP host with the same MCP_AE_CONFIG_PATH; the standard shared path needs no setup.
Security
The server binds to loopback only unless two explicit overrides are provided.
WebSocket upgrades require a constant-time verified 256-bit token.
Raw ExtendScript is absent from the MCP tool list unless explicitly enabled.
Curated tools use strict schemas and bounded arrays/strings.
The CEP panel accepts commands only from its authenticated server connection.
Rendering and layer deletion are marked destructive for compatible MCP clients.
Treat raw scripting as equivalent to running code under your After Effects user account.
Development and testing
npm run typecheck
npm run lint
npm run test:unit # round 1
npm run test:integration # round 2
npm run test:adversarial # round 3
npm run build
npm run package:extensionnpm run verify runs the complete validation pipeline. The ZIP is emitted at release/after-effects-mcp-cep.zip.
Entry points
MCP executable:
dist/src/server.js(stdio; no HTTP URI)Bridge WebSocket:
ws://127.0.0.1:19728/bridge?token=…Local health check:
http://127.0.0.1:19728/healthCEP panel menu:
Window → Extensions → After Effects MCP Bridge
Data/storage
No database is used. The only persistent data is the local bridge config file. After Effects project mutations are applied through Adobe's scripting API and remain undoable until the project is saved/closed.
Not implemented / platform constraints
A signed ZXP installer is not included; signing requires a publisher certificate.
Live end-to-end execution inside a licensed After Effects GUI cannot run in headless CI. The mock AE bridge validates protocol behavior; host-script execution should also be smoke-tested in each supported AE release.
Dynamic Graph, Essential Graphics, Mocha, and third-party plug-in-specific APIs are reachable through property paths or optional raw scripting but do not have dedicated tools yet.
Recommended next steps
Sign the CEP package for managed enterprise distribution.
Add AE-version matrix smoke tests on dedicated macOS/Windows workstations.
Add dedicated tools for masks, effects, markers, cameras/lights, and Essential Graphics based on production needs.
Deployment status
This is a local desktop connector, not a Cloudflare/web deployment. Version 1.0.0 is buildable and packageable from the repository.
This server cannot be installed
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
- AlicenseBqualityDmaintenanceAn MCP server that enables AI assistants to control Adobe After Effects through a file-based communication bridge. It supports various operations including project and composition management, layer and keyframe manipulation, rendering, and batch processing.Last updated922921MIT
- Alicense-qualityAmaintenanceEnables MCP clients to drive Adobe After Effects via a Python server and CEP panel, supporting inspection, mutation, preview, checkpoint/revert, skills, and basic rigging.Last updated34MIT
- AlicenseAqualityCmaintenanceAn MCP server that allows AI agents to control Adobe After Effects, enabling project inspection, composition creation, layer addition, file import, ExtendScript execution, and rendering via aerender.Last updated11MIT
- AlicenseCqualityCmaintenanceMCP server for controlling Adobe After Effects, enabling AI assistants to create compositions, manage layers, and animate properties.Last updated1365MIT
Related MCP Connectors
MCP server for Producer/Riffusion AI music generation
MCP (Model Context Protocol) server for Appwrite
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/Fansist/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server