Editmamei
Editmamei lets an AI assistant drive Adobe Photoshop through natural language, turning descriptions into real Photoshop operations on your locally-installed software. It never uploads your images or generates pixels. You can:
Document & Canvas: Create, open, close, save, export (JPEG/PNG), resize, crop, convert color modes, place images, and transform the canvas.
Layers & Groups: Create, delete, duplicate, rename, reorder, merge, rasterize, convert to smart objects, set opacity/blend modes/visibility, manage groups and clipping masks.
Selections: Create and modify selections (rectangular, elliptical, color/luminance ranges, magic wand, skin tones), save/load alpha channels, AI-assisted Select Subject and Select Sky.
Adjustments: Apply non-destructive adjustment layers (Curves, Levels, Hue/Saturation, Color Balance, etc.) and destructive adjustments (Shadows/Highlights, Equalize).
Filters: Apply a wide variety of filters (blur, sharpen, noise, distort, stylize, etc.) with extensive parameters.
Retouching: Content-aware fill, patch, move, brush-based healing, cloning, dodging, burning, portrait touch-ups (dodge face, soften skin).
Text & Shapes: Create editable text layers, draw vector shapes (rectangles, ellipses, lines) with fill and stroke.
Masks & Paths: Create, manage, and apply pixel masks, vector masks, gradient masks; work with paths (create, stroke, fill, load as selection); perform Apply Image and Calculations for advanced compositing.
Perception: On-device face and object detection, scene understanding (sky/ground, horizon, tonal zones, composition), select regions by name (sky, subject, skin), portrait touch-ups, brush strokes along detected features.
Verification & Inspection: Render previews with annotations, get histograms, compare regions, compute layer bounds, inspect document metadata/layer tree/history.
Automation & Utilities: Play actions, execute scripts, import templates (Pro), manage guides, undo/redo, generate diagnostic reports.
Non-destructive by Default: Most destructive operations auto-duplicate the active layer to preserve originals.
Editmamei
Unlock Photoshop with natural-language photo editing. AI orchestration, not generation.
Independent project, not affiliated with or endorsed by Adobe Inc.
Editmamei is a Model Context Protocol (MCP) server that drives the Adobe Photoshop you already have. You describe the edit in plain words, your AI assistant plans the steps, and your own copy of Photoshop carries them out with its standard adjustment layers, masks, selections, and filters. The AI directs and Photoshop edits. No generative model touches your pixels, and no image is uploaded to perform an edit.
It serves photographers and retouchers who want to edit by conversation just as much as developers wiring Photoshop into an AI pipeline. To learn more or get started, visit editmamei.com.
editmamei.com · Docs · Report a bug
How it works
Editmamei is a pure MCP stdio server written in Node. Your AI client launches it as a subprocess and calls its tools over stdio. Each tool builds a small Photoshop script and runs it in your local Photoshop over the platform's native automation channel:
AI client ──stdio──▶ Editmamei (Node MCP server)
│ builds a Photoshop script per tool call
▼
COM (Windows) / AppleScript (macOS)
│
▼
Your local Adobe PhotoshopWindows drives Photoshop through COM (the
Photoshop.Applicationobject).macOS drives it through AppleScript / OSA.
Perception (face, object, and scene detection) runs on-device with local ONNX computer vision, so the model gets real document coordinates without your image leaving the machine.
Photoshop does the pixel work with its own engine. Editmamei is the conductor, not a renderer.
Related MCP server: ImageMcp
Install
npm install -g editmamei
editmamei install # registers with Claude Desktop, Cursor, Claude Code
editmamei status # confirms install state + Photoshop detectionThen restart your AI client and ask it: "Is Photoshop connected?"
Prefer not to use a terminal? Claude Desktop users can install the one-click .mcpb extension directly (no system Node required, Claude Desktop ships its own runtime). Full walkthrough in the install guide.
Requirements: Adobe Photoshop 2026 (v27.x), Windows 10/11 or macOS 12+, Node.js 22+ (for the npm path), and an MCP-compatible AI client (Claude Desktop, Cursor, Claude Code).
A session, end to end
The discovery chain is ps_ping (liveness), then ps_overview (the working method and capability map), then tools/list (the full schema-typed inventory). After that you just talk to your assistant:
"Open my vacation photo." "Make the sky more dramatic but keep the foreground natural." "Sharpen the eyes, soften the skin, leave everything else alone." "Isolate the subject onto its own layer with a clean mask." "Export a 2048px web JPEG."
Your assistant composes those into tool calls, checks the result with previews and measurements, and iterates.
Design principles
These are the choices that shape the surface, and the reason an AI assistant can drive it reliably rather than hopefully.
Structured results, not prose. Every tool declares an
outputSchemaand returns a typed JSON payload. Any tool that changes what is active reports the current document and layer back, so the model keeps an accurate picture of Photoshop's state between calls instead of re-deriving it.Guidance lives in the surface.
ps_overviewreturns the working method (assess, plan, enact, check, iterate) andps_list_capabilitiesreturns a live map of what exists. The model orients itself from the server rather than from guesswork or a stale prompt.Measure, don't eyeball. A dedicated set of verification tools (histogram, region compare, layer-bounds diff, selection preview) lets the model check its own work numerically instead of trusting a thumbnail.
On-device perception. Local computer vision (ONNX) detects faces, objects, and scene regions and returns real document coordinates. The image stays on your machine for this step and is never sent to a cloud vision model.
Non-destructive by default. Adjustments are adjustment layers, and destructive pixel operations run on an auto-created duplicate. An edit is reversible by construction.
Verified against real Photoshop. Every tool is built on Photoshop's own native scripting functions and verified in live Photoshop sessions before it ships. A new tool stays disabled until it has passed live verification, so the shipped surface is the verified surface.
Built for modern Photoshop. Editmamei targets Photoshop 2026 (v27.x) so it can rely on current, stable scripting descriptors rather than carrying a decade of drifted behavior.
Tool surface
87 tools across 16 capability groups (64 Community, 23 Pro). Every tool is namespaced ps_* and discoverable at runtime via tools/list. Community tools ship in both editions; Pro tools unlock with a license.
Group | Edition | Tools |
Core | Community |
|
Inspect | Community |
|
Verify | Community |
|
Document & canvas | Community |
|
Selection | Community |
|
Adjustments | Community |
|
Filters | Community |
|
Retouch | Community |
|
Layers | Community |
|
Masks & paths | Community |
|
Type | Community |
|
Perception | Community |
|
AI selection | Community |
|
AI selection | Pro |
|
Filters | Pro |
|
Layers (warp) | Pro |
|
Perception | Pro |
|
Face mesh | Pro |
|
Templates | Pro |
|
Automation | Pro |
|
Editions
Community is free and covers the everyday editing surface: documents, layers, selections (including AI Select Subject and Select Sky), non-destructive adjustments, filters, masks, type, retouching, on-device perception, and the inspect/verify primitives.
Pro adds Camera Raw develop, the grounded precision tools (warp, named-object masks, precision placement), subject-instance targeting, face-mesh perception, the reproducible-template system, and Photoshop Actions plus the scripting escape hatch.
The split is detailed in pro-features.md. Pricing is at editmamei.com.
This repository holds the Community source. Pro is a separately licensed module and its source is not published here; Community never imports it, so this tree builds and runs on its own.
Build from source
git clone https://github.com/editmamei/editmamei.git
cd editmamei
npm install
npm run build
npm testYou need Node.js 22+ and a Go toolchain (the build compiles the editmamei-core binary that generates Photoshop scripts). The build warns instead of failing when Go is missing, so you can still run the test suite; set EDITMAMEI_CORE_BIN to a prebuilt binary if you would rather not install Go.
The test suite runs without Photoshop. It verifies the ExtendScript Editmamei generates, never that Photoshop accepted it, so live verification against a real Photoshop is a separate step.
Contributions are welcome. Start with CONTRIBUTING.md, which covers the CLA, the branch and pull-request flow, and what to include in a bug report.
Configuration
Settings live in ~/.editmamei/settings.json, managed by the editmamei config CLI:
editmamei config list
editmamei config set telemetry.usage false # turn off anonymous usage telemetry
editmamei config set ps_path "/path/to/Photoshop"PHOTOSHOP_PATH (env var) overrides Photoshop auto-detection for a single run.
Privacy
Editmamei runs on your computer and edits in your own Photoshop. No image content, document data, or file paths are sent to Editmamei's servers. It reports anonymous, content-free usage telemetry (on by default, turn it off with editmamei config set telemetry.usage false). When your AI assistant needs to see a result, Editmamei sends it a downscaled preview, the same as dropping a photo into a chat with that assistant. Every field is documented in privacy.md.
The source in this repository is the same code published to npm, so none of the above has to be taken on trust.
Docs and support
Features and pricing: editmamei.com
Install: docs/installation.md
Getting started: docs/getting-started.md
FAQ: docs/faq.md
Pro features: docs/pro-features.md
Roadmap: docs/roadmap.md
Bugs and feature requests: the issue tracker. If something's broken, ask your assistant to "report a problem" (or run
editmamei report) to drop an anonymized diagnostic bundle in your Downloads folder, then attach it to the issue.Security: see SECURITY.md (don't file security issues publicly)
License
Editmamei CE is Fair Source software under the Functional Source License, v1.1, MIT Future License (FSL-1.1-MIT).
You can read, run, modify, and redistribute the code for almost anything: commercial photo editing, internal tools, education, research, security review. The one thing the license holds back, for two years per release, is offering the code to others in a commercial product or service that competes with Editmamei CE or Pro. If you redistribute the code, keep the license and copyright notices with it. Two years after each version ships, that version automatically becomes available under plain MIT.
This section is a plain-English summary. The LICENSE file is the license; where they differ, the LICENSE file controls.
Editmamei is not open source under the OSI definition, and we don't call it that. It is source-available, with the full CE stack developed in the open.
Editmamei Pro is a separate, commercially licensed module; its source is not published.
Third-party dependencies keep their own licenses, listed in NOTICES.md.
Maintenance
Related MCP Servers
- Alicense-qualityDmaintenanceAn MCP server for controlling Adobe Photoshop from AI assistants, with Windows-first workflow, structured state, smoke-tested action playback, and a bundled Codex skill for image editing.2MIT
- Flicense-qualityCmaintenanceA full-featured image processing MCP server for AI assistants, exposing ~55 tools across 11 categories for editing, layers, conversion, AI segmentation/cleanup/generation, design analysis, and screenshot-to-code.
- AlicenseAqualityCmaintenanceA professional MCP server that lets AI assistants directly control Adobe Photoshop for document creation, layer management, filters, adjustments, shapes, text, and design intelligence like palette generation and font pairing.322MIT
- Alicense-qualityAmaintenanceEnables AI assistants to control Adobe Photoshop programmatically, supporting recipe workflows, state awareness, and generative AI features through natural language commands.1,388270MIT
Related MCP Connectors
MCP server for NanoBanana AI image generation and editing
GibsonAI MCP server: manage your databases with natural language
MCP server for Luma Dream Machine AI video generation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/editmamei/editmamei'
If you have feedback or need assistance with the MCP directory API, please join our Discord server