Add to Claude Code
98 addsAdd this MCP server to Claude Code.
Name: Adobe Creative Suite MCP
Merge into: ~/.claude/mcp.json under mcpServers
---
{
"mcpServers": {
"adobe": {
"command": "npx",
"args": ["-y", "adobe-creative-mcp"],
"env": {
"ADOBE_APP": "photoshop"
}
}
}
}
// ── Setup ────────────────────────────────────────────────────────────────────
// 1. Requires Adobe Creative Cloud with an active subscription
// 2. Install the UXP Developer Tools from Creative Cloud
// 3. Set ADOBE_APP to the target app: "photoshop", "illustrator", or "indesign"
//
// The server communicates with Adobe apps via the UXP scripting bridge,
// which must be enabled in the target application's preferences.
//
// ── Available tools ──────────────────────────────────────────────────────────
// run_script execute a UXP/ExtendScript snippet in the target app
// get_document_info get active document metadata (size, layers, etc.)
// get_layers list all layers with properties
// create_layer add a new layer
// set_layer_property modify layer opacity, blend mode, visibility
// apply_filter apply a filter (blur, sharpen, etc.)
// export_document export as PNG, JPEG, PDF, or SVG
// get_selection get current selection bounds
// run_action play a recorded Photoshop Action
//
// ── Tips ─────────────────────────────────────────────────────────────────────
// - Use run_script for complex operations not covered by individual tools
// - Photoshop scripts use the UXP API (modern) or ExtendScript (legacy)
// - Chain operations: get_layers → modify → export for batch workflows
Paste into Claude Code to connect this MCP server.
How to add
Full guide →Click Add, then paste into Claude Code. Claude will connect the MCP server in your settings.
Target: .claude/mcp.json → mcpServers