mcp-aftereffects
This server provides MCP tools to let an LLM control Adobe After Effects, enabling project inspection, atomic mutations, JSON checkpoint/restore, frame rendering for visual verification, and optional custom scripting.
Inspection
ae_project_info: file path, dirty flag, all items, active item.ae_comp_info: size, fps, duration, work area, layers — supports batching multiple comps.ae_layer_info: full details including transform, effects, masks, text, keyframes — can fetch one, many, or all layers in one call.ae_version_info: AE version, build, feature probes.ae_context: active comp, selected layers, ambient state, ES3 rules and helper functions.
Mutation & Execution
ae_do: execute atomic operations (keyframes, transforms, effects, expressions, comp/layer mutations) — validated before reaching AE; each call automatically wrapped in one undo group.batch.runinsideae_do: collapse many mutations plus read/render steps into one round trip and one undo.eval.run(requiresAE_MCP_ENABLE_EVAL=1): execute arbitrary ES3 code with access to AE helpers.ae_save_project: save in place or Save As.
Visual Verification
ae_render_frame: outputs a PNG of a comp at a given time for visual verification, with color management options.
Project Checkpoint/Restore
ae_project_export_json: entire project serialized to JSON, to disk or inline.ae_project_import_json: rebuild project from JSON with clear, dry-run, and skip validation options.
Discovery
ae_catalog: list all available atomic operations grouped by category with parameter schemas, filtered by current policy.
Policy / Safety Controls
AE_MCP_READONLY=1: read-only mode.AE_MCP_ALLOW_CATEGORIES: restrict operations to specific categories.AE_MCP_ENABLE_EVAL=1: gate for custom ExtendScript.
Error Handling
The server includes retries, busy locks, diagnostic logs, and supports recovering from hung AE via process kill.
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., "@mcp-aftereffectsAudit the Main comp and report layers with expression errors or missing footage."
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.

mcp-aftereffects
English | 日本語
An MCP server that enables AI to control Adobe After Effects.
You can connect MCP-compatible clients such as Claude Code or Claude Desktop to a running instance of After Effects, allowing the AI to handle everything from project inspection and editing to rendering.
There is no need to provide detailed instructions on how to operate After Effects. Simply explain what you want to achieve in natural language, and the AI will check the project status and perform the necessary operations.
Windows / macOS · After Effects 2024–2026 · Node.js 24+
This tool directly manipulates After Effects projects via AI.
The AI can read project contents and modify compositions, layers, effects, keyframes, and more.
Additionally, information the AI reads from the project may be sent to the AI service you are using. This may include composition names, layer names, expressions, keyframes, footage file paths, etc.
If using this for projects under NDA or unreleased works, please check the data retention policy of the AI service you are using and the logs of your MCP client beforehand.
For first-time use, we recommend trying it with a backup or a test .aep file rather than a critical project.
Capabilities
With mcp-aftereffects, you can request the AI to perform After Effects tasks.
Inspect project contents
Investigate compositions and layers
Edit layers and properties
Add or modify keyframes
Edit effects and masks
Edit text and shapes
Set expressions
Save projects
Create and restore project backups
Render frames to preview changes
For example, you can give instructions like these:
"Import this Illustrator file and create some nice-looking text motion."
"Apply the revisions mentioned in this PDF."
"Point out any issues in this AEP."
Even for complex tasks, the AI can combine necessary operations while checking the project status.
Related MCP server: After Effects MCP Server
Requirements
Windows or macOS
Adobe After Effects 2024 / 2025 / 2026
Node.js 24 or higher
MCP-compatible client (Claude Code, Claude Desktop, etc.)
No plugins or panels need to be installed within After Effects.
After Effects Settings
In After Effects Preferences, please turn ON the following:
Preferences → Scripting & Expressions → "Allow Scripts to Write Files and Access Network"
If this setting is OFF, the AI will not be able to perform operations correctly.
For macOS
Upon first use, macOS may request permission for the client to control After Effects.
If it is not permitted, go to:
System Settings → Privacy & Security → Automation
and allow your MCP client or terminal to control After Effects.
Quick Start
No installation is required on the After Effects side.
First, launch After Effects and open the project you wish to operate on.
Next, register mcp-aftereffects with your MCP client.
Claude Code
claude mcp add aftereffects -- npx -y @kumoproductions/mcp-aftereffectsClaude Desktop
Add the following to your MCP configuration file:
{
"mcpServers": {
"aftereffects": {
"command": "npx",
"args": ["-y", "@kumoproductions/mcp-aftereffects"]
}
}
}If you are using other MCP clients, please follow their respective registration methods for MCP servers.
Read-Only Mode
If you want to inspect or audit project content without making any changes, you can use read-only mode.
Add the following to your MCP client configuration:
{
"mcpServers": {
"aftereffects": {
"command": "npx",
"args": ["-y", "@kumoproductions/mcp-aftereffects"],
"env": {
"AE_MCP_READONLY": "1"
}
}
}
}You can still investigate the project and render frames for preview.
Advanced Settings
Usually, no configuration is necessary.
In some environments, such as when After Effects is installed in a non-standard location, additional settings may be required.
Specifying After Effects Location
If After Effects is not in the standard installation path, you can specify the executable location using AE_MCP_EXE.
By default, it automatically searches for After Effects in the order of 2026 → 2025 → 2024.
Limiting Operation Scope
Using AE_MCP_ALLOW_CATEGORIES, you can restrict the types of operations permitted for the AI.
For example, you can limit permissions to only keyframe-related operations depending on your use case.
Execution of Arbitrary ExtendScript
mcp-aftereffects includes an advanced feature to execute arbitrary ExtendScript for processes that cannot be handled by standard operations.
This feature is disabled by default.
Enabling arbitrary ExtendScript allows operations outside of After Effects.
This may permit actions that affect your entire computer, such as file or process manipulation.
This feature is disabled by default. Enable it only if necessary.
To enable it, set the following in your MCP server environment variables:
"env": {
"AE_MCP_ENABLE_EVAL": "1"
}Use this feature only for advanced processing that cannot be achieved through regular operations or when custom ExtendScript is required.
Official Releases
Official releases are distributed only through npm and GitHub Releases.
Please exercise caution if obtaining packages claiming to be @kumoproductions/mcp-aftereffects or files claiming to be this server from any other location.
Troubleshooting
Operations Timeout
Please check the following:
Is After Effects running?
Is a project open?
Is "Allow Scripts to Write Files and Access Network" turned ON?
On macOS, is the Automation permission enabled?
After Effects Not Found
If you have installed After Effects in a non-standard location, please set AE_MCP_EXE.
If the issue persists, please report it via an Issue or to @cumuloworks.
Developer Information
For information regarding internal MCP tools, communication methods with After Effects, ExtendScript, test environments, and how to add custom operations, please refer to the developer documentation.
docs/TOOLS.mdCONTRIBUTING.md
Contributing
Bug reports, feature requests, and Pull Requests are welcome.
For information on setting up the development environment and the internal architecture, please refer to CONTRIBUTING.md.
License
MIT © 2026 kumo.productions, Inc.
Trademark
Adobe® and Adobe After Effects® are trademarks of Adobe Inc.
This project is an independent, unofficial tool and is not affiliated with or endorsed by Adobe.
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
- 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.11MIT
- AlicenseCqualityCmaintenanceMCP server for controlling Adobe After Effects, enabling AI assistants to create compositions, manage layers, and animate properties.1384MIT
- AlicenseCqualityCmaintenanceLocal MCP server to control Adobe After Effects from AI clients like Claude and Cursor, supporting project composition, layer editing, animation, masks, and effects.1384MIT
- AlicenseNot gradedqualityBmaintenanceA local MCP server that connects AI agents to Adobe After Effects, enabling reliable project inspection, reasoning, and controlled mutations through structured tools and typed patches.68,789MIT
Related MCP Connectors
MCP server for Hailuo (MiniMax) AI video generation
MCP server for Luma Dream Machine 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/kumoproductions/mcp-aftereffects'
If you have feedback or need assistance with the MCP directory API, please join our Discord server