mcp-ae
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-aecreate a 1920x1080 composition called 'Intro' at 24fps, 5 seconds"
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 After Effects
An MCP (Model Context Protocol) server that lets Claude (or any MCP client) control Adobe After Effects via natural language.
How It Works
Claude ──MCP──► mcp-after-effects ──ExtendScript──► Adobe After EffectsThe server bridges Claude to AE using one of three mechanisms (selected automatically based on your OS):
Mode | OS | Mechanism |
| macOS |
|
| Windows | VBScript COM automation |
| Any | AE command-line renderer ( |
Related MCP server: after-effects-mcp
Prerequisites
Node.js ≥ 18
Adobe After Effects (any recent version — CC 2019+)
After Effects must be open for
applescript/commodes, oraerendermust be on your PATH foraerendermode
Installation
npm install
npm run buildConfiguration
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"after-effects": {
"command": "node",
"args": ["/absolute/path/to/mcp-ae/dist/index.js"],
"env": {
"AE_BRIDGE_MODE": "auto"
}
}
}
}Environment Variables
Variable | Default | Description |
|
| Bridge mode: |
| (OS default) | Full path to |
aerender Paths (defaults)
macOS:
/Applications/Adobe After Effects 2024/aerenderWindows:
C:\Program Files\Adobe\Adobe After Effects 2024\Support Files\aerender.exe
Available MCP Tools
Project & Composition
Tool | Description |
| Get info about the open project |
| List all compositions |
| List all layers in a composition |
| Create a new composition |
Layers
Tool | Description |
| Add a text layer |
| Add a solid color layer |
| Add a null/control layer |
| Import a file (video, image, audio, AEP) |
Animation
Tool | Description |
| Set a layer property value (with or without keyframe) |
| Add a keyframe to a layer property |
| Apply an effect to a layer by match name |
Render & Save
Tool | Description |
| Add a composition to the render queue |
| Start rendering all queued items |
| Save the current project |
Advanced
Tool | Description |
| Execute raw ExtendScript in After Effects |
Example Prompts
Once connected to Claude, you can say things like:
"List all compositions in my After Effects project"
"Create a 1920×1080 composition called 'Intro' at 24fps, 5 seconds long"
"Add a white text layer saying 'Hello World' at 72px font size, centered"
"Set the opacity of layer 'Title' to 0 at t=0 and 100 at t=1 second"
"Apply a Gaussian Blur to the background layer"
"Add the 'Main' composition to the render queue and save to /tmp/output.mp4"
"Run this ExtendScript:
app.project.activeItem.name"
Property Paths
Use dot notation for nested properties with ae_set_layer_property and ae_add_keyframe:
Transform.Position → [x, y]
Transform.Scale → [x, y] (percentage, e.g. [100, 100])
Transform.Rotation → degrees
Transform.Opacity → 0-100
Transform.Anchor Point → [x, y]Common Effect Match Names
Effect | Match Name |
Gaussian Blur |
|
Drop Shadow |
|
Glow |
|
Hue/Saturation |
|
Levels |
|
Fractal Noise |
|
Linear Wipe |
|
Fill |
|
Find all match names by running: ae_run_script with:
var e = app.effects;
var r = [];
for (var i=0; i<e.length; i++) r.push(e[i].matchName);
return r.join("\n");Development
npm run dev # Run with tsx (no build step)
npm run build # Compile TypeScript → dist/
npm run watch # Watch modeArchitecture
src/
├── index.ts # MCP server, tool definitions
├── ae-bridge.ts # OS-level AE communication
└── scripts/
└── common-effects.ts # Effect names & property path constantsThis 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
- AlicenseCqualityDmaintenanceEnables AI assistants to control Adobe After Effects through the MCP protocol, including composition creation, layer management, and animation.Last updated1374MIT
- -license-quality-maintenanceEnables AI assistants to control Adobe After Effects through a standardized MCP protocol, providing tools for composition creation, layer management, and animation.Last updated
- 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 updated1374MIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
MCP server for Google Veo AI video generation
Generate, edit, and deploy immersive 3D/WebGL web projects from any MCP assistant.
Appeared in Searches
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/shibin0/mcp-ae'
If you have feedback or need assistance with the MCP directory API, please join our Discord server