Adobe MCP provides AI-powered automation for Adobe Creative Suite applications (Photoshop, Premiere Pro, Illustrator, and InDesign) through the Model Context Protocol (MCP). This enables AI assistants like Claude to control Adobe applications programmatically using natural language.
- Multi-Application Support: Control Photoshop, Premiere Pro, Illustrator, and InDesign
- Natural Language Interface: Use conversational commands to automate Adobe apps
- Comprehensive API: Access to layers, filters, text, selections, and more
- Real-time Communication: WebSocket-based proxy for instant command execution
- Cross-Platform: Works on Windows and macOS
The system uses a 3-tier architecture:
- MCP Servers (Python) - Expose tools to AI/LLM clients
- Proxy Server (Node.js) - WebSocket bridge between MCP and Adobe apps
- UXP Plugins (JavaScript) - Execute commands within Adobe applications
- Python 3.10+
- Node.js 18+
- Adobe Creative Suite applications (26.0+ for Photoshop, 25.3+ for Premiere)
- Adobe UXP Developer Tools
- Clone the repository:
git clone https://github.com/yourusername/adobe-mcp.git
cd adobe-mcp- Install Python dependencies:
pip install -e .- Install proxy server dependencies:
cd proxy-server
npm install
cd ..- Start the proxy server:
adobe-proxy- Install UXP plugins via Adobe UXP Developer Tools
# Photoshop
adobe-photoshop
# Premiere Pro
adobe-premiere
# Illustrator (includes built-in proxy)
adobe-illustrator
# InDesign
adobe-indesignAdd to your Claude desktop configuration:
{
"mcpServers": {
"adobe-photoshop": {
"command": "adobe-photoshop"
},
"adobe-premiere": {
"command": "adobe-premiere"
},
"adobe-illustrator": {
"command": "adobe-illustrator"
},
"adobe-indesign": {
"command": "adobe-indesign"
}
}
}- "Create a new Photoshop document with a blue gradient background"
- "Add a text layer saying 'Hello World' in 48pt Helvetica"
- "Apply a gaussian blur filter to the current layer"
- "Create a double exposure effect with two images"
- "Add cross-fade transitions between all clips in Premiere"
- Launch Adobe UXP Developer Tools
- Click "Add Plugin" and navigate to the appropriate plugin folder:
uxp-plugins/photoshopfor Photoshopuxp-plugins/premierefor Premiere Prouxp-plugins/illustratorfor Illustratoruxp-plugins/indesignfor InDesign
- Select the
manifest.jsonfile - Click "Load" to activate the plugin
adobe-mcp/
├── adobe_mcp/ # Python MCP servers
│ ├── photoshop/ # Photoshop MCP server
│ ├── premiere/ # Premiere Pro MCP server
│ ├── illustrator/ # Illustrator MCP server
│ ├── indesign/ # InDesign MCP server
│ └── shared/ # Shared utilities
├── uxp-plugins/ # Adobe UXP plugins
│ ├── photoshop/ # Photoshop plugin
│ ├── premiere/ # Premiere plugin
│ ├── illustrator/ # Illustrator plugin
│ └── indesign/ # InDesign plugin
├── proxy-server/ # WebSocket proxy server
└── docs/ # Documentation
- Add the API method to the appropriate MCP server
- Implement the corresponding handler in the UXP plugin
- Test the integration through the proxy server
- Plugin won't connect: Ensure the proxy server is running on port 3001
- Commands fail: Check that the UXP plugin is loaded and connected
- MCP server errors: Verify Python dependencies are installed
MIT License - see LICENSE file for details.
Contributions are welcome! Please read CONTRIBUTING.md for guidelines.
This project integrates work from multiple Adobe automation projects and contributors.