This proof of concept project enables AI control of Adobe tools (Photoshop and Premiere) through the MCP protocol, allowing AI clients like Claude Desktop to perform tasks ranging from basic editing to complex project creation. It creates a bridge between LLMs and Adobe applications, enabling conversational interfaces for creative work.
To run this MCP server, you'll need:
Download the latest release from the releases page, including:
photoshop-mcp.dxt
for Photoshoppremiere-mcp.dxt
for Premiere ProUsing prebuilt executables (recommended):
Download the appropriate executable for your platform from the latest release.
Unzip the executable.
Run the executable from terminal or console:
macOS (Intel or Apple Silicon):
./adb-proxy-socket-macos-x64
or
./adb-proxy-socket-macos-arm64
Windows:
Double-click adb-proxy-socket-win.exe
or run in Command Prompt:
adb-proxy-socket-win.exe
You should see a message like:
Photoshop MCP Command proxy server running on ws://localhost:3001
Keep this running — the proxy server must stay active for Claude to communicate with Adobe plugins.
Clone or download the source code from the main project page.
Same as Quick Start step 2.
Navigate to the project directory and run:
For Photoshop:
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client --with numpy ps-mcp.py
For Premiere Pro:
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client --with pillow pr-mcp.py
Restart Claude Desktop after installation.
Same as Quick Start step 4.
For Photoshop:
For Premiere Pro:
uxp/ps/manifest.json
uxp/pr/manifest.json
Launch the following:
Note: You must reload the plugin via the UCP Developer app every time you restart Photoshop and Premiere.
You can ask about available functionality:
Can you list what apis / functions are available for working with Photoshop / Premiere?
Some sample prompts:
Create a new Photoshop file with a blue background, that is 1080 width by 720 height at 300 dpi
Create a new Photoshop file for an instagram post
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 you get an error that the MCP is not working, you may need to edit your Claude config file and provide an absolute path for the UV command.
The MCP server lists available fonts but may omit some if you have many fonts installed. By default, it lists the first 1000 fonts alphabetically. You can specify fonts by their Postscript name.
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