Photoshop MCP
Control Adobe Photoshop via Python API (Windows)
Runs as a server Claude Code connects to. It needs its own configuration, and some servers need an API key.
Install just this one
Run in your terminal — needs Node
npx archtmpl@latest --mcp photoshop-mcpFirst time? The whole install, step by step
- Open Claude Code — the terminal version or the desktop app, either one.
- In a terminal, paste the line above and press Enter. In the app, paste it into the chat and ask Claude to run it.
- Restart Claude Code. That's the whole install.
The same JSON shown on this page works in the Claude desktop app without Claude Code. Add it to the app's config file, then restart the app:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
What this mcp server does
shell
1{ 2 "name": "Photoshop MCP", 3 "summary": "Control Adobe Photoshop via Python API — documents, layers, effects, session info (Windows only)", 4 "repo": "https://github.com/loonghao/photoshop-python-api-mcp-server", 5 "mcpServers": { 6 "photoshop": { 7 "command": "uvx", 8 "args": ["--python", "3.10", "photoshop-mcp-server"], 9 "env": {10 "PS_VERSION": "2024"11 }12 }13 },14 "postInstallNotes": "Windows only — relies on Windows-specific COM interfaces; macOS and Linux cannot run this server. Requires Adobe Photoshop installed locally (tested CC2017 through 2024). Set PS_VERSION to match your installed Photoshop version (e.g. 2023, 2022)."15}16