← ClaudeAtlas

adobe-aftereffects-mcplisted

Adobe After Effects motion graphics and animation via adb-mcp ExtendScript. Use when creating compositions, animating layers, keyframing, writing expressions, building MOGRTs, rendering, compositing VFX, automating AE project setup, or working with the After Effects MCP server.
seanwinslow28/code-brain · ★ 0 · AI & Automation · score 72
Install: claude install-skill seanwinslow28/code-brain
# Adobe After Effects MCP ## Purpose Execute After Effects operations through the adb-mcp server's CEP plugin using `execute_extend_script`. Generate valid, self-contained ExtendScript (ES3) to create compositions, animate layers, apply effects, write expressions, and render output. AE is the **most powerful** Adobe MCP integration — full arbitrary scripting via ExtendScript. ## When to Use - Creating or modifying After Effects compositions via MCP - Animating layers with keyframes or expressions - Building Motion Graphics Templates (MOGRTs) for Premiere - Setting up render queue items for export - Compositing visual effects or layered animations - Automating project organization and layer management - Reviewing animation quality and expression errors ## Examples **Example 1: Create animated title card** ``` User: "Create a 5-second title card that fades in and scales up" Claude: [Uses adobe-aftereffects-mcp] 1. execute_extend_script: Create comp (1920x1080, 5s, 30fps) 2. execute_extend_script: Add text layer "Title", set font/size/color 3. execute_extend_script: Keyframe Opacity 0→100 over 1s with ease 4. execute_extend_script: Keyframe Scale 80→100 over 1s with overshoot to 105 "Title card created. Opacity fades in with ease, scale overshoots slightly for bounce feel." ``` **Example 2: Expression-driven animation** ``` User: "Make this logo wiggle subtly and loop" Claude: [Uses adobe-aftereffects-mcp] 1. execute_extend_script: Find logo layer by name 2.