A

Adobe Photoshop

Automate Photoshop actions via UXP.

·No reviews yet
Repo
Share:

About

Auto-generated

Adobe Photoshop is a Model Context Protocol server in the Design category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Adobe Photoshop.

What is the primary function of the Adobe Photoshop MCP?
The Adobe Photoshop MCP allows users to automate Photoshop actions, enabling programmatic control over design tasks. It integrates with UXP for executing scripts and commands to streamline workflows within the application.
How can I install the Adobe Photoshop MCP in a client like Cursor?
Installation in a client like Cursor typically involves configuring the client to connect to the MCP's transport, which is 'stdio' in this case. Specific steps may vary by client, but generally involve providing the path to the MCP's executable or script.
Does the Adobe Photoshop MCP require any authentication credentials like an API key?
No, the Adobe Photoshop MCP specifies an authentication type of 'none', meaning it does not require an API key, OAuth, or other external credentials to operate. It relies on the local Photoshop installation.
What are the key capabilities exposed by the Adobe Photoshop MCP?
The service automates tasks directly within Adobe Photoshop via UXP. This allows for scripting and execution of complex design actions, though the specific tools exposed are not detailed and depend on the underlying Photoshop UXP API.
What is a common limitation or prerequisite for using the Adobe Photoshop MCP?
A primary prerequisite is an existing installation of Adobe Photoshop, as the MCP operates by extending its functionality. The specific version compatibility and UXP environment setup are crucial and can be a common gotcha.

Install Adobe Photoshop

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "adobe-photoshop": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-adobe-photoshop"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "adobe-photoshop": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-adobe-photoshop"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "adobe-photoshop": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-adobe-photoshop"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.