The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the After Effects MCP listing page.
Control Adobe After Effects from any MCP client (Claude Code / Claude Desktop) using natural language: create and inspect comps and layers, animate, apply effects and presets, manage masks/cameras, render in the background, and run arbitrary ExtendScript - with first‑class Arabic / RTL support and tools that work on After Effects in any UI language.
This is an enhanced edition built on the original work of Dakkshin/after-effects-mcp. See CREDITS.md.
https://github.com/user-attachments/assets/af6419bd-5854-46f7-a0ba-49231697eb18
Built and rendered end to end from a single prompt, no manual keyframing.
| Area | This edition |
|---|---|
| Works in any AE language | All standard property lookups use locale‑independent matchNames → no breakage on Arabic/French/German/Japanese AE |
| Arabic / RTL text | create-text-layer auto‑detects Arabic, sets right‑to‑left direction and right alignment |
| Arbitrary scripting | execute-script runs any ExtendScript → reach every AE feature |
| Visual feedback | see-frame renders a frame back as an image so the AI can SEE its work and self-correct (no other AE MCP does this) |
| Deep inspection | inspect-comp / inspect-layer - see exact state before editing |
| Rendering | In‑app render queue and background aerender (no UI freeze) |
| Reliability | Per‑command IDs (no stale results), one undo group per command, faster polling, OneDrive‑proof shared folder, check-bridge health/version check |
| Layer management | Cameras, duplicate, delete, masks, batch transform, comp settings - as dedicated tools |
57 tools total. Full details in ENHANCEMENTS.md.
npm install -g @anthropic-ai/claude-code)Then in After Effects:
Register the server with your MCP client:
First test: ask your client to “check the After Effects bridge”. It should report
bridgeVersion: 1.13.0-mcp-enhanced and versionMatch: true.
💡 If you edit the server, re‑run
npm run build, then restart the MCP client. If you edit the bridge, also re‑runnpm run install-bridgeand restart After Effects.
Inspection & diagnostics - see-frame, contact-sheet, match-reference, inspect-comp, inspect-layer, get-results, check-bridge, run-bridge-test, get-help
Composition & layers - create-composition, set-composition-properties, create-text-layer, localize-comp, create-camera, create-adjustment-layer, duplicate-layer, delete-layer, center-layers, set-layer-mask, batch-set-layer-properties, set-layer-parent, reorder-layer, precompose-layers, populate-template
Animation - setLayerKeyframe, setLayerExpression, get-layer-clip-frames, animate-to-audio, animate-from-data
Effects - apply-effect, add-any-effect, apply-effect-template, list-layer-effects, list-available-effects, set-effect-property, set-effect-keyframe, remove-effect, mcp_aftereffects_get_effects_help
Presets - list-presets, search-presets, apply-preset
Audio & markers - get-audio-info, set-audio-levels, analyze-audio-waveform, add-marker, add-markers-bulk
Project assets - import-footage, list-project-items, relink-footage
Rendering - add-to-render-queue, render-queue, start-render, render-aerender, render-status
Power - execute-script (arbitrary ExtendScript), run-script, test-animation
For project/comp overview you can also use run-script with getProjectInfo / listCompositions.
📖 Full reference: docs/TOOLS.md (all 57 tools) · docs/ARCHITECTURE.md (how the bridge works).
“Create a text layer that says ‘مرحبا بالعالم’”
create-text-layer detects the Arabic text and automatically sets right‑to‑left direction and
right alignment. Use a font that supports Arabic (e.g. Tahoma, Cairo). For full Arabic shaping,
enable the Middle‑Eastern text engine in After Effects (Windows: Preferences > Type;
macOS: Settings > Type).
npm run install-bridge, restart After Effects.%LOCALAPPDATA%\ae-mcp-bridge (OneDrive‑proof). Override both sides with the AE_MCP_BRIDGE_DIR env var if needed.Pure logic lives in src/lib/bridge-core.ts and is unit tested in tests/bridge-core.test.ts. CI type-checks and builds on Linux, macOS, and Windows across Node 18, 20, and 22, and runs the test suite on Node 20 and 22 (Vitest 4 requires Node 20+). See CONTRIBUTING.md for the architecture and how to add a tool.
Licensed under the MIT License. Original work © 2025 Dakkshin; enhanced multilingual edition © 2026 Abdelrahman Youssef. See LICENSE and CREDITS.md.