The Model Context Protocol started as a developer tool. GitHub, Supabase, Slack. But the protocol works for any software with an API or scripting layer. That includes most professional creative tools.
An MCP server for After Effects does the same thing as one for GitHub. It translates between your AI client and the application's native interface. Instead of writing ExtendScript or remembering FFmpeg flags, you describe what you want in plain English.
We track over 2,500 MCP servers in our directory. This guide covers the ones built specifically for creative workflows: video, 3D, audio, streaming, and design.
In this article
Video editing
Video production involves repetitive tasks: trimming clips, adding transitions, applying color grades, exporting in multiple formats. MCP servers let your AI handle the mechanical parts while you focus on creative decisions.
After Effects MCP
View detailsControl Adobe After Effects from Claude. Create compositions, add layers, apply effects, and trigger renders. Connects through ExtendScript.
npx -y after-effects-mcpExample: Ask Claude to create a 10-second lower third with your brand colors, or batch-apply motion blur to every layer in a comp.
FFmpeg MCP
View detailsRun FFmpeg commands through your AI client. Transcode video, extract audio, generate thumbnails, and concatenate clips without memorizing FFmpeg flags.
npx -y ffmpeg-mcp-serverExample: Tell Claude "convert this 4K ProRes to H.264 at 1080p, 8Mbps, with AAC audio" and it builds the right FFmpeg command.
Streaming and recording
OBS Studio is the standard for streaming and recording. An MCP server turns it into something your AI can operate, which opens up automation for scene switching, recording management, and stream alerts.
OBS MCP
View detailsControl OBS Studio from AI agents. Switch scenes, start and stop recording, toggle sources, and manage audio levels. Uses the OBS WebSocket protocol.
npx -y obs-mcp-serverExample: Build a voice-controlled stream setup. Claude switches your scene to "BRB" when you say you are taking a break, then back to your camera when you return.
3D and game development
Game engines and 3D tools have deep scripting APIs. MCP servers expose those APIs to AI models, so you can describe what you want in plain English instead of writing GDScript or Python from scratch.
Godot MCP
View detailsConnect the Godot game engine to Claude. Create nodes, write GDScript, manage scenes, and run the game from your AI client.
npx -y godot-mcp-serverExample: Describe a 2D platformer mechanic. Claude creates the scene tree, writes the movement script, and adds collision shapes.
Blender MCP
View detailsControl Blender through the Python API. Create meshes, apply materials, set up lighting, and render scenes. Works with Blender 3.x and 4.x.
npx -y blender-mcp-serverExample: Ask Claude to model a low-poly coffee cup, add a ceramic material, set up three-point lighting, and render a preview.
Audio production
Audio tools are some of the most complex creative applications. MCP servers bring natural language control to synthesizers, DAWs, and signal processing environments.
Max MSP MCP
View detailsInterface with Cycling '74 Max/MSP from AI clients. Create patches, control parameters, and manage audio routing through the Max API.
npx -y max-msp-mcp-serverExample: Ask Claude to build a granular synthesis patch with four grain streams and an LFO controlling grain density.
Design
Design tools have well-documented APIs but steep learning curves. MCP servers let you manipulate design files by describing what you need instead of navigating plugin documentation.
Figma MCP
View detailsRead and modify Figma files through the Figma API. Inspect components, extract design tokens, create frames, and update text layers.
npx -y figma-mcp-serverExample: Have Claude audit a Figma file for accessibility issues: contrast ratios, font sizes, touch target dimensions.
Looking for a different creative tool?
We track over 2,500 MCP servers. New creative integrations get added every week.
Browse all MCP serversHow to configure multiple creative MCP servers
You can run several creative MCP servers at once. Each server gets its own entry in your claude_desktop_config.json. Claude Desktop connects to all of them simultaneously.
Here is an example config with Blender, After Effects, and FFmpeg servers running together:
{
"mcpServers": {
"blender": {
"command": "npx",
"args": ["-y", "blender-mcp-server"],
"env": {
"BLENDER_PATH": "/Applications/Blender.app/Contents/MacOS/Blender"
}
},
"after-effects": {
"command": "npx",
"args": ["-y", "after-effects-mcp"],
"env": {}
},
"ffmpeg": {
"command": "npx",
"args": ["-y", "ffmpeg-mcp-server"],
"env": {}
},
"obs": {
"command": "npx",
"args": ["-y", "obs-mcp-server"],
"env": {
"OBS_WEBSOCKET_URL": "ws://localhost:4455",
"OBS_WEBSOCKET_PASSWORD": "your_password"
}
},
"figma": {
"command": "npx",
"args": ["-y", "figma-mcp-server"],
"env": {
"FIGMA_ACCESS_TOKEN": "your_figma_token"
}
}
}
}A few things to keep in mind:
- The target app must be running. Blender MCP needs Blender open. After Effects MCP needs After Effects open. The MCP server is a bridge, not a standalone runner.
- Some servers need paths. Blender MCP may need the path to your Blender binary. OBS MCP needs the WebSocket URL and password from OBS settings.
- Restart after editing. Claude Desktop loads the config on startup. Save the file, then restart the app.
- One server per tool. Do not add two entries for the same application. MCP clients route to servers by name.
With this config, you can ask Claude to render a 3D scene in Blender, composite it in After Effects, and encode the output with FFmpeg. All in one conversation.
What's coming next in creative AI tooling
The creative MCP ecosystem is still early. Most servers launched in late 2025 or early 2026. Here is where things are headed.
DAW integration is the next frontier
Ableton Live, Logic Pro, and FL Studio all have scripting interfaces. MCP servers for DAWs would let you describe a beat and have Claude build the MIDI pattern, select instruments, and set the mix. Early prototypes exist on GitHub.
Real-time collaboration is getting closer
Current MCP servers work in request-response mode. You ask, the tool acts. Future versions may support streaming, so your AI can watch a Blender viewport or OBS preview and react in real time.
Pipelines across tools will become standard
Running Blender, After Effects, and FFmpeg from one conversation already works. The next step is AI agents that plan and execute multi-tool pipelines without manual prompting. Model a scene, composite it, encode it, upload it. One command.
Frequently asked questions
Can MCP servers control After Effects in real time?
Yes. The After Effects MCP server connects to the ExtendScript engine. Your AI client can create compositions, add layers, apply effects, and render. It runs commands through the CEP panel, so After Effects needs to be open.
Do I need to install Blender separately for the Blender MCP server?
Yes. The MCP server acts as a bridge between your AI client and a running Blender instance. Blender must be installed and open. The server communicates through the Blender Python API.
Can I use multiple creative MCP servers at the same time?
Yes. Add each server to your claude_desktop_config.json under the mcpServers object. Claude Desktop connects to all configured servers simultaneously and can switch between tools within a single conversation.
Are creative MCP servers free to use?
Most creative MCP servers are open source and free. The underlying tools (After Effects, Figma, etc.) require their own licenses. The MCP servers themselves are community-built and available on GitHub.
Find out which AI tools fit your creative stack
The free AI Scan analyzes your current tools and shows where MCP servers and AI agents can save you time.