Adobe MCP Server provides an interface for AI applications to control Adobe applications including Photoshop and Premiere Pro through the Model Context Protocol (MCP). This tool allows AI clients such as Claude to interact directly with Adobe applications, making it possible to automate tasks, generate designs, or provide conversational guidance for users unfamiliar with the software.
Before installing the MCP server, ensure you have:
Navigate to your project directory and run the appropriate command for your Adobe application:
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client --with numpy ps-mcp.py
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client --with pillow pr-mcp.py
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client --with pillow id-mcp.py
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client --with pillow ae-mcp.py
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client --with pillow ai-mcp.py
Restart Claude Desktop after installation.
node proxy.js
You should see a message like:
Photoshop MCP Command proxy server running on ws://localhost:3001
Keep this running — the proxy server must remain active for communication between Claude and Adobe plugins.
uxp/ps/manifest.json
uxp/pr/manifest.json
uxp/id/manifest.json
Create this directory if it doesn't exist:
/Users/USERNAME/Library/Application Support/Adobe/CEP/extensions
Create a symlink to the plugin:
cd /Users/USERNAME/Library/Application Support/Adobe/CEP/extensions
ln -s /Users/USERNAME/src/adb-mcp/cep/com.mikechambers.ae com.mikechambers.ae
or
cd /Users/USERNAME/Library/Application Support/Adobe/CEP/extensions
ln -s /Users/USERNAME/src/adb-mcp/cep/com.mikechambers.ai com.mikechambers.ai
Create this directory if it doesn't exist:
C:\Users\USERNAME\AppData\Roaming\Adobe\CEP\extensions
Create a symbolic link (run Command Prompt as Administrator):
mklink /D "C:\Users\USERNAME\AppData\Roaming\Adobe\CEP\extensions\com.mikechambers.ae" "C:\Users\USERNAME\src\adb-mcp\cep\com.mikechambers.ae"
or
mklink /D "C:\Users\USERNAME\AppData\Roaming\Adobe\CEP\extensions\com.mikechambers.ai" "C:\Users\USERNAME\src\adb-mcp\cep\com.mikechambers.ai"
This loads instructions that help Claude better understand how to work with Adobe applications.
You can ask the AI about available functions:
Can you list what apis / functions are available for working with Photoshop / Premiere?
Use natural language for commands:
Create a new Photoshop file with a blue background, that is 1080 width by 720 height at 300 dpi
Create a double exposure image in Photoshop of a woman and a forest
Add cross fade transitions between all of the clips on the timeline in Premiere
If Claude reports the MCP isn't working, try editing your Claude config file to include an absolute path for the UV command.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "adobe-photoshop" '{"command":"python","args":["-m","mcp","run","ps-mcp.py"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"adobe-photoshop": {
"command": "python",
"args": [
"-m",
"mcp",
"run",
"ps-mcp.py"
]
},
"adobe-premiere": {
"command": "python",
"args": [
"-m",
"mcp",
"run",
"pr-mcp.py"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"adobe-photoshop": {
"command": "python",
"args": [
"-m",
"mcp",
"run",
"ps-mcp.py"
]
},
"adobe-premiere": {
"command": "python",
"args": [
"-m",
"mcp",
"run",
"pr-mcp.py"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect