adobe-photoshop-mcplisted
Install: claude install-skill seanwinslow28/code-brain
# Adobe Photoshop MCP
## Purpose
Execute Photoshop operations through the adb-mcp server's UXP plugin. Translate creative plans into small-batch MCP tool calls, verify results visually via `get_document_image`, and maintain non-destructive editing patterns throughout.
## When to Use
- Editing images or compositing in Photoshop via MCP
- Assembling sprite sheets from individual frames
- Using generative fill or AI-powered selection
- Batch processing multiple images
- Creating or modifying PSD layer structures
- Applying adjustment layers, effects, or masks
- Preparing assets for After Effects or game engines
## Examples
**Example 1: Sprite sheet assembly**
```
User: "Assemble these 12 character sprites into a 4x3 sprite sheet"
Claude: [Uses adobe-photoshop-mcp]
1. Calculates grid: 4 columns x 3 rows at 64x64px each = 256x192 document
2. create_document(256, 192, 72, "transparent")
3. Loop: place_image + translate_layer for each sprite to grid position
4. rename_layers to "Sprite_01" through "Sprite_12"
5. group_layers into "Sheet_Root"
6. get_document_image to verify alignment
"Sprite sheet assembled. All 12 frames aligned to grid. Ready to export?"
```
**Example 2: Non-destructive background replacement**
```
User: "Replace the background of this product photo"
Claude: [Uses adobe-photoshop-mcp]
1. get_document_info — confirms resolution and color mode
2. select_subject — AI-powered subject isolation
3. add_layer_mask_from_selection — mask instead