dcc-mcp-photoshop
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@dcc-mcp-photoshoplist layers in the active Photoshop document"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
dcc-mcp-photoshop
Bring Adobe Photoshop to MCP-native AI agents.
dcc-mcp-photoshop turns Photoshop into a standards-compliant MCP Streamable HTTP backend via the adobepy Rust broker and UXP bridge. Agents can inspect documents, create and edit layers, apply text, filters, smart objects, selections, export images, and automate Photoshop workflows through typed tools instead of brittle ad-hoc scripts.
The Python MCP server communicates with Photoshop through the adobepy Rust broker (port 47391), which proxies between the Python SDK and the UXP bridge running inside Photoshop.
Why Use It
What you get | Why it matters |
40+ typed Photoshop tools across 8 bundled skill packages | Agents can call validated tools for document, layer, image, text, selection, filter, smart object, and script operations. |
adobepy Rust broker | High-performance local proxy between Python SDK and UXP bridge. |
Sidecar isolation | Python MCP server runs outside Photoshop's UI thread; adobepy broker handles all host communication. |
Gateway compatible | Works with |
Multi-channel distribution | Available as PyPI package, standalone binary (no Python runtime), or UXP |
One-click setup | The |
Related MCP server: Photoshop MCP Server
Quick Start
Prerequisites
adobepy broker — Install and start the Rust broker:
cargo install adobepy-cli adobepy brokeradobepy UXP bridge — Install in Photoshop:
adobepy install-bridge photoshop
1. Install dcc-mcp-photoshop
2. Configure your MCP client
Point your MCP client to the gateway URL. The gateway auto-discovers which DCC (Photoshop, Maya, etc.) to route each tool call to, so you only need one endpoint:
{
"mcpServers": {
"photoshop": {
"url": "http://127.0.0.1:9765/mcp"
}
}
}3. Smoke test
Search for Photoshop tools, load the photoshop-document skill, and list layers in the current document.Architecture
AI Agent (Claude Desktop / Cursor / Copilot)
│ MCP Streamable HTTP (gateway port 9765)
▼
dcc-mcp-server Gateway
│ auto-discovers DCC via capability index
▼
PhotoshopMcpServer [Python sidecar]
│ HTTP JSON-RPC (port 47391)
▼
adobepy Rust Broker [adobepy broker]
│ WebSocket (port 47391)
▼
adobepy UXP Bridge [bridges/uxp/photoshop/, TypeScript]
│ Photoshop UXP API
▼
Adobe Photoshop 2022+Key architectural decisions:
The adobepy Rust broker (port 47391) is the central hub — Python SDK and UXP bridge both connect to it.
Python MCP server runs independently (port 8765); skill scripts use
adobe.photoshop.Photoshop()facade to call the broker.The adobepy UXP bridge (
bridges/uxp/photoshop/) handles all Photoshop DOM operations with 60+ typed methods.All Photoshop automation goes through the adobepy facade layer, which abstracts over the broker.
Tool Surface
Skills are lazy-loaded: only meta-tools are available initially. Use load_skill to expand:
search_skills / dcc_capability_manifest
-> load_skill("photoshop-document")
-> list_layers(...)photoshop-document
Document information, listing, and lifecycle management.
Tool | Description | Read-only |
| Get metadata about the active Photoshop document (name, size, resolution, color mode) | ✅ |
| List all currently open Photoshop documents with metadata | ✅ |
| List all layers in the active document. Set | ✅ |
| Close a Photoshop document by ID or the active document | ❌ |
photoshop-image
Document creation, export, canvas/image resize, flatten, and merge operations.
Tool | Description | Read-only |
| Create a new document with specified dimensions, resolution and color mode | ❌ |
| Export the active document to PNG, JPG, TIFF, or PSD | ❌ |
| Save the active document in its current format | ❌ |
| Resize canvas without scaling content | ❌ |
| Scale the image (resamples content) | ❌ |
| Flatten all layers into a single background layer | ❌ |
| Merge all visible layers | ❌ |
photoshop-layers
Full CRUD for layers plus visual property changes.
Tool | Description | Read-only |
| Create a pixel, group, or adjustment layer | ❌ |
| Delete a named layer | ❌ |
| Duplicate a named layer | ❌ |
| Rename a layer | ❌ |
| Set opacity (0-100) of a named layer | ❌ |
| Show or hide a named layer | ❌ |
| Set blend mode (normal, multiply, screen, overlay, etc., 27 modes) | ❌ |
| Fill a layer with solid color (hex) or transparent | ❌ |
photoshop-text
Text layer creation, editing, and inspection.
Tool | Description | Read-only |
| Create a new text layer with content and styling (font, size, color, alignment) | ❌ |
| Update text content or style of an existing text layer | ❌ |
| Get text content and style properties of a text layer | ✅ |
photoshop-selection
Selection creation, modification, and saving.
Tool | Description | Read-only |
| Get current selection bounds (top, left, bottom, right) | ✅ |
| Select the entire canvas | ❌ |
| Deselect any active selection | ❌ |
| Create a rectangular selection (top, left, bottom, right in pixels) | ❌ |
| Create an elliptical selection | ❌ |
| Invert the current selection | ❌ |
| Expand selection by N pixels | ❌ |
| Contract selection by N pixels | ❌ |
| Feather selection by N pixels | ❌ |
| Save selection as a named alpha channel | ❌ |
photoshop-filter
Apply filters to layers.
Tool | Description | Read-only |
| Apply Gaussian Blur (radius in pixels) | ❌ |
| Apply High Pass filter (radius in pixels) | ❌ |
| Apply Sharpen filter | ❌ |
| Apply Smart Blur (radius + threshold) | ❌ |
| Generic filter by method name with arguments | ❌ |
photoshop-smart-object
Smart Object operations for non-destructive editing.
Tool | Description | Read-only |
| Convert the active layer to a Smart Object | ❌ |
| Create a new Smart Object by duplicating the active layer | ❌ |
| Open the Smart Object for editing | ❌ |
| Replace Smart Object contents with an external file | ❌ |
photoshop-script
Execute scripts and actions for advanced automation.
Tool | Description | Read-only |
| Execute arbitrary JavaScript/UXP code in Photoshop | ❌ |
| Execute a named Photoshop Action from an Action Set | ❌ |
photoshop-adjustment
Channel operations and low-level batchPlay access.
Tool | Description | Read-only |
| Execute raw ActionDescriptor batchPlay commands | ❌ |
| Get channel information for the active document | ✅ |
| Add a new alpha channel | ❌ |
| Remove a named channel | ❌ |
Runtime Features
Feature | Surface |
Capability manifest |
|
adobepy broker | Local Rust proxy (port 47391) with session management and timeout control. |
Persistent logging | Logs written to |
Lazy skill loading |
|
One-Click Installer
The photoshop-setup skill provides a complete installer workflow that automates environment checks, package installation, UXP plugin setup, and MCP client configuration.
load_skill("photoshop-setup")Tools
Tool | Description |
| Check system prerequisites (Python, pip, Photoshop) |
| Install or upgrade dcc-mcp-photoshop via pip |
| Install UXP .ccx plugin into Photoshop |
| Start server in dev mode for testing |
| Verify bridge connection to Photoshop |
| Auto-configure MCP client configs for Claude Desktop, Cursor, VS Code |
Standard Install Flow
check_environment → install_package → setup_uxp_plugin → configure_mcp_client → verify_connectioncheck_environment — Verifies Python, pip, and Photoshop are available.
install_package — Installs
dcc-mcp-photoshopand dependencies from PyPI.setup_uxp_plugin — Installs the
.ccxplugin into Photoshop.configure_mcp_client — Sets up
mcpServersentries for Claude Desktop, Cursor, and VS Code.verify_connection — Confirms the bridge is connected and Photoshop responds.
Installing a Specific Version
Pin to a specific version for compatibility with your existing dcc-mcp-core deployment:
install_package(version="0.1.14")Upgrading
Upgrade dcc-mcp-photoshop and its dependencies to the latest version on PyPI:
install_package(upgrade=True)Rolling Back
Install a previous version to roll back from a regression. The UXP plugin version must match the Python package version:
install_package(version="0.1.13")Uninstalling
Remove the Python package via pip:
pip uninstall dcc-mcp-photoshopRemove the UXP plugin from Creative Cloud Desktop → Plugins → Manage Plugins, or delete the .ccx from the UXP plugins directory:
# Windows
Remove-Item "$env:APPDATA\Adobe\UXP\Plugins\External\dcc-mcp-photoshop-bridge-*.ccx"# macOS
rm ~/Library/Application\ Support/Adobe/UXP/Plugins/External/dcc-mcp-photoshop-bridge-*.ccxInstallation
PyPI
pip install dcc-mcp-photoshopInstall with sidecar dependencies (recommended for the default plugin gateway mode):
pip install "dcc-mcp-photoshop[sidecar]"Or via uvx:
uvx --with dcc-mcp-photoshop dcc-mcp-photoshop --embeddedFrom source:
git clone https://github.com/dcc-mcp/dcc-mcp-photoshop.git
cd dcc-mcp-photoshop
pip install -e ".[dev]"Standalone Binary
Each GitHub Release includes platform-specific binaries built with PyOxidizer. No Python runtime required.
Platform | Binary name |
Windows |
|
Linux |
|
macOS |
|
# Download the latest release binary (example: Linux)
curl -LO https://github.com/dcc-mcp/dcc-mcp-photoshop/releases/latest/download/dcc-mcp-photoshop-linux
chmod +x dcc-mcp-photoshop
./dcc-mcp-photoshop --helpUXP .ccx Plugin
Install the .ccx into Photoshop if you only need the UXP sidecar:
Download the
.ccxfrom the latest release assetsOpen Creative Cloud Desktop → Plugins → Manage Plugins
Click the gear icon → Install from file...
Select the downloaded
.ccxfileRestart Photoshop
Manual install:
# Windows
copy dcc-mcp-photoshop-bridge-*.ccx "$env:APPDATA\Adobe\UXP\Plugins\External\"# macOS
cp dcc-mcp-photoshop-bridge-*.ccx ~/Library/Application\ Support/Adobe/UXP/Plugins/External/Configuration
MCP Client Configuration
Claude Desktop
{
"mcpServers": {
"photoshop": {
"url": "http://127.0.0.1:9765/mcp"
}
}
}The gateway URL (:9765) is a unified facade that aggregates tools from all registered DCCs. On tools/call, the gateway auto-discovers the correct DCC instance via the capability index — no need to specify the DCC type in the URL.
Embedded mode via command:
{
"mcpServers": {
"photoshop": {
"command": "dcc-mcp-photoshop",
"args": ["--embedded"],
"env": {}
}
}
}Cursor
In Cursor Settings → Features → MCP Servers:
Name: photoshop
Type: url
URL: http://127.0.0.1:9765/mcpVS Code (via MCP extension)
{
"mcp": {
"servers": {
"photoshop": {
"command": "dcc-mcp-photoshop",
"args": ["--embedded"]
}
}
}
}Environment Variables
Variable | Description | Default |
| adobepy broker HTTP endpoint |
|
| Broker authentication token |
|
| Broker target identifier |
|
| MCP HTTP server port |
|
| Gateway competition port | — |
| Log directory |
|
| Log level (DEBUG/INFO/WARNING/ERROR) |
|
| Operation timeout in seconds |
|
| Shared FileRegistry directory for gateway discovery |
|
| Extra skill directories (colon-separated) | — |
| Global extra skill directories | — |
Bridge Protocol
The Python ↔ Photoshop communication goes through the adobepy Rust broker using the adobepy protocol (v0.2.0). The broker handles JSON-RPC 2.0 routing, session management, and timeout control.
For protocol details, see the adobepy protocol contract.
Skill Authoring
Skills use the adobepy facade layer:
from adobe.dcc_mcp import action_result
from adobe.photoshop import Photoshop
from dcc_mcp_core.skill import skill_entry
@skill_entry
def list_layers(**kwargs) -> dict:
"""List all layers in the active Photoshop document."""
app = Photoshop()
return action_result(
"Listed active Photoshop layers",
lambda: {"layers": [layer.name for layer in app.activeLayers]},
prompt="Use the layer names in the next Photoshop operation.",
)
def main(**kwargs):
return list_layers(**kwargs)
if __name__ == "__main__":
from dcc_mcp_core.skill import run_main
run_main(main)Skill directory structure
skills/
├── photoshop-document/
│ ├── SKILL.md
│ └── scripts/
├── photoshop-image/
│ ├── SKILL.md
│ └── scripts/
├── photoshop-layers/
│ ├── SKILL.md
│ └── scripts/
├── photoshop-text/
│ ├── SKILL.md
│ └── scripts/
├── photoshop-selection/
│ ├── SKILL.md
│ └── scripts/
├── photoshop-filter/
│ ├── SKILL.md
│ └── scripts/
├── photoshop-smart-object/
│ ├── SKILL.md
│ └── scripts/
├── photoshop-script/
│ ├── SKILL.md
│ └── scripts/
└── photoshop-adjustment/
├── SKILL.md
└── scripts/Setting custom skill paths
export DCC_MCP_PHOTOSHOP_SKILL_PATHS=/path/to/my/skills
dcc-mcp-photoshop --embedded --skill-paths /path/to/my/skillsCLI Reference
dcc-mcp-photoshop [OPTIONS]
Options:
--mcp-port PORT MCP HTTP server port (default: 8765)
--broker-url URL adobepy broker URL (default: http://127.0.0.1:47391)
--gateway-port PORT Gateway competition port
--server-name NAME Server name in MCP initialize (default: photoshop-mcp)
--skill-paths PATH Extra skill directories
--no-builtins Do not discover built-in skills
--verbose, -v Enable debug logging
--version Show version and exitPython API
import dcc_mcp_photoshop
handle = dcc_mcp_photoshop.start_server(port=8765, broker_url="http://127.0.0.1:47391")
print(f"MCP URL: {handle.mcp_url()}")
# ... use with Claude Desktop, Cursor, etc.
handle.shutdown()Ports
Port | Service | Description |
47391 | adobepy broker | Rust broker HTTP/WS endpoint (Python SDK ↔ UXP bridge) |
8765 | MCP HTTP server | MCP Streamable HTTP endpoint for AI agents |
9765 | Gateway | Optional multi-DCC gateway proxy |
Gateway Mode (Recommended for Deployment)
This mode uses the standalone dcc-mcp-server for the MCP server with the adobepy broker as the Photoshop communication layer.
Terminal 1 — Start the adobepy broker:
adobepy brokerTerminal 2 — Start the MCP server:
dcc-mcp-photoshop --broker-url http://127.0.0.1:47391MCP clients connect to the gateway URL:
http://127.0.0.1:9765/mcp— Gateway proxy (recommended)http://127.0.0.1:8765/mcp— Direct access
UXP Bridge Setup
The UXP bridge is part of the adobepy project. To install:
adobepy install-bridge photoshopThis copies the bridge files to Photoshop's UXP plugins directory. Restart Photoshop to load the bridge.
For development, load from source:
Open Photoshop
Go to Plugins → Development → Load Plugin...
Navigate to adobepy's
bridges/uxp/photoshop/and selectmanifest.json
Bridge manifest
The bridge manifest is at bridges/uxp/photoshop/manifest.json in the adobepy repository:
Field | Value |
Plugin ID |
|
Name |
|
Host app | Photoshop (PS), min version 25.0.0 |
Network permissions | All domains (required for WebSocket to broker) |
Local file system | Request (user consent per operation) |
Development
git clone https://github.com/dcc-mcp/dcc-mcp-photoshop.git
cd dcc-mcp-photoshop
pip install -e ".[dev]"
pytest tests/Requirements
Photoshop: Adobe Photoshop 2022+ (UXP support required)
Python (pip path only): Python 3.8+
Dependencies (auto-installed with pip):
dcc-mcp-core >= 0.19.17, < 1.0.0adobepy >= 0.1.0websockets >= 12.0
Build (to build standalone binary from source): Python 3.8+, Rust toolchain, and PyOxidizer (
pip install pyoxidizer)
Path | Photoshop Required? | Python Required? |
pip install | Yes (UXP plugin) | Yes |
Standalone binary | Yes (UXP plugin) | No |
UXP .ccx plugin only | Yes | No (bridge binary only) |
Version Compatibility
dcc-mcp-photoshop | dcc-mcp-core | UXP Plugin | Sidecar Binary |
current main | >=0.19.17,<1.0.0 | 0.1.x | dcc-mcp-server >=0.19.17 |
0.1.0-0.1.26 | >=0.12.14,<1.0.0 | 0.1.x | dcc-mcp-server >=0.12.14 |
0.2.x (planned) | >=0.18.2,<1.0.0 | 0.2.x | dcc-mcp-server >=0.18.2 |
Distribution
Release artifacts per version:
dcc-mcp-photoshop-<version>-py3-none-any.whl— Python wheeldcc-mcp-photoshop-<version>.tar.gz— Python sdistdcc-mcp-photoshop-bridge-<version>.ccx— UXP plugindcc-mcp-photoshop-windows.exe— Windows binarydcc-mcp-photoshop-linux— Linux binarydcc-mcp-photoshop-macos— macOS binary
Roadmap
v0.1.0 — Foundation ✅
Package structure and API design
PhotoshopBridge WebSocket client scaffold
Skill authoring helpers
v0.2.0 — adobepy Integration ✅
adobepy Rust broker integration (port 47391)
Python SDK facade (adobe.photoshop)
40+ Photoshop skills across 8 packages
Selection, filter, smart object, script, adjustment tools
UXP code convergence (removed old bridge/uxp-plugin/)
Configuration externalization (config.py)
v0.3.0 — Skills & Polish (next)
Color adjustments (levels, curves, hue/saturation)
Layer styles and effects
Batch processing workflows
Performance optimizations
v1.0.0 — Production Ready
Photoshop 2025+ UXP API compatibility
Authentication and security hardening
E2E test coverage
Troubleshooting
Broker not reachable
adobepy broker not reachable at http://127.0.0.1:47391Start the broker:
adobepy brokerVerify the broker is running:
curl http://127.0.0.1:47391/v1/capabilitiesCheck the
ADOBEPY_BROKER_URLenvironment variable matches the broker endpoint
UXP bridge not connecting
Ensure Photoshop 2024+ (min version 25.0.0) is running
Run
adobepy install-bridge photoshopand restart PhotoshopCheck the bridge is loaded: Plugins → Adobe Python Bridge
No active document error
If skills return "No active document":
Open a document in Photoshop (File → New or File → Open)
Retry the skill call
Default ports used
Port | Service |
47391 | adobepy Rust broker |
8765 | MCP HTTP server |
9765 | Gateway competition port |
Contributing
Contributions are especially welcome from those with:
Adobe UXP / ExtendScript experience
Photoshop automation knowledge
WebSocket and JSON-RPC protocol experience
See CONTRIBUTING.md for guidelines.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Appeared in Searches
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dcc-mcp/dcc-mcp-photoshop'
If you have feedback or need assistance with the MCP directory API, please join our Discord server