Description

A Model Context Protocol server that interfaces with Adobe Photoshop's Python API. Enables LLMs to execute image editing operations.

Installation

npx -y photoshop-python-api-mcp-server
npm install photoshop-python-api-mcp-server
git clone https://github.com/loonghao/photoshop-python-api-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "photoshop-python-api-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "photoshop-python-api-mcp-server"
      ]
    }
  }
}