adb-mcp is a tool that allows AI agents like Claude to control Adobe applications (currently Photoshop and Premiere) via the MCP protocol. This integration enables conversational control of Adobe tools, letting you create designs, edit photos, or manage video projects through natural language instructions.
To use adb-mcp, you'll need:
Download the adb-mcp project and extract it to your preferred location.
Download and install Claude Desktop and launch it to verify it works correctly.
Ensure Python 3 is installed and in your system PATH. This guide assumes you're using uv for package management.
For Photoshop integration:
cd mcp
uv run mcp dev ps-mcp.py
For Premiere integration:
cd mcp
uv run mcp dev pr-mcp.py
Load the dev interface at http://localhost:5173, click "connect", and under "Resources" click "config://get_instructions" to verify it's working.
Now install the MCP server into Claude:
For Photoshop:
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client ps-mcp.py
For Premiere:
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client pr-mcp.py
Close and restart Claude Desktop to complete the integration.
Ensure NodeJS is installed and in your system PATH.
cd adb-proxy-socket
npm install
node proxy.js
You should see a message indicating the proxy server is running on ws://localhost:3001.
You can ask Claude about available APIs and functions:
Can you list what apis / functions are available for working with Photoshop / Premiere?
Use natural language to give instructions, such as:
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
For persistent issues, post on the GitHub Issues page or join the Discord.
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 > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
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 explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.