Server data from the Official MCP Registry
Drive Adobe CC (AE, Photoshop, Illustrator, Premiere, Character Animator) from any MCP client
Drive Adobe CC (AE, Photoshop, Illustrator, Premiere, Character Animator) from any MCP client
The adobe-mcp server is a well-designed tool for controlling Adobe Creative Cloud applications via ExtendScript. The codebase demonstrates good security practices overall: no hardcoded credentials, proper use of environment variables, and thoughtful input handling via Zod validation. However, the server's core functionality—arbitrary ExtendScript execution within Adobe apps—creates inherent risks that users must understand. The macOS Automation permission model and logging of script errors (including user code) warrant security awareness. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
7 files analyzed · 12 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: ADOBE_MCP_WORKSPACE
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-ajsmonty-adobe-mcp": {
"env": {
"ADOBE_MCP_WORKSPACE": "your-adobe-mcp-workspace-here"
},
"args": [
"-y",
"@ajsmonty/adobe-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Drives After Effects, Photoshop, Illustrator, Premiere Pro (and Character Animator puppet authoring) from Claude. See ROADMAP.md for the full tool matrix and what is next.
Bridge: MCP client → this server → AppleScript DoScript → AE → temp result file → back.
| Tool | Purpose |
|---|---|
run_extendscript | Run arbitrary JSX; return <value> comes back as JSON. Auto undo-grouped. |
get_project_state | Project item tree, or one comp's layers in detail (comp_name). |
save_frame | Render a comp frame to PNG, returned inline so Claude can see its work. |
list_ae_scripts | List .jsx/.jsxbin tools in scripts/ with descriptions from header comments. |
run_ae_script | Execute a library script, like File → Scripts → Run Script File. |
The server ships with a curated knowledge base (knowledge/lessons.jsonl) seeded from real
production sessions — matchName gotchas, API quirks, parameter-type traps, and techniques
(blueprint line extraction, seamless wind loops, QE transitions, Auto Reframe...).
Three mechanisms keep it useful and growing:
*_run_extendscript call is matched against the
lesson keywords; hits are appended to the error message the client sees (e.g. hit
Illegal Parameter type in Premiere and the fix for autoReframeSequence's string preset
arrives with the error). Failures are also logged to $WORKSPACE/error-log.jsonl as raw
material for new lessons.knowledge_search / knowledge_add tools — agents consult lessons before attempting
unusual scripting, and record new gotchas when they solve one that wasn't auto-suggested.
Runtime lessons persist to $WORKSPACE/learned.jsonl (survives repo updates, per-install).The scripts/ per-app libraries are the executable side of the same idea — distilled,
reusable skills (list_scripts / run_script): blueprint line extraction (PS), seamless
wind loops and kinetic typography rigs (AE), one-call vertical Auto Reframe (Premiere).
adobe-mcp-x.y.z.mcpb from Releases and double-click it (or drag it onto Claude Desktop → Settings → Extensions). Claude Desktop bundles its own Node runtime — nothing else to install.Upgrading? Remove the old version first (Settings → Extensions → Adobe Creative Cloud → Uninstall), then install the new .mcpb — in-place installs over an existing version can leave stale files behind while reporting the new version number.
Requires Node 18+ installed system-wide (nodejs.org installer or brew install node — note GUI apps often cannot see nvm-managed installs). No clone, no npm install: every client config below just runs
npx -y @ajsmonty/adobe-mcp
git clone https://github.com/AJSMonty/adobe-mcp.git ~/tools/adobe-mcp
cd ~/tools/adobe-mcp && npm install
# point your client at: node ~/tools/adobe-mcp/server.mjs
Premiere Pro only: the ppro_* tools need the bundled CEP panel installed once — copy cep/mcp-bridge to ~/Library/Application Support/Adobe/CEP/extensions/ and enable PlayerDebugMode (see Notes), then open Window → Extensions → MCP Bridge inside Premiere.
This is a standard stdio MCP server — any MCP-capable client can drive it (Claude Code,
Claude Desktop, Cursor, Windsurf, VS Code Copilot agent mode, Zed, Cline, Goose, ...).
Everything below is the same one-liner expressed in each client's config format:
run npx -y @ajsmonty/adobe-mcp over stdio (or node .../server.mjs for a source checkout).
claude mcp add --scope user adobe -- npx -y @ajsmonty/adobe-mcp
--scope user = available in all projects; use --scope project from inside a repo to share via .mcp.json with your team. Verify: claude mcp list.
Settings → Developer → Edit Config, add to claude_desktop_config.json:
{
"mcpServers": {
"adobe": {
"command": "npx",
"args": ["-y", "@ajsmonty/adobe-mcp"]
}
}
}
Fully quit and reopen Claude Desktop.
Settings → MCP → Add server, or edit ~/.cursor/mcp.json (global) / .cursor/mcp.json (per-project):
{
"mcpServers": {
"adobe": {
"command": "npx",
"args": ["-y", "@ajsmonty/adobe-mcp"]
}
}
}
Enable it under Settings → MCP, then use Agent mode (composer) — tool calls appear with approval prompts.
.vscode/mcp.json in the workspace (or user mcp.json via the "MCP: Add Server" command):
{
"servers": {
"adobe": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@ajsmonty/adobe-mcp"]
}
}
}
~/.codeium/windsurf/mcp_config.json — same mcpServers shape as Claude Desktop/Cursor above.
If the client supports MCP over stdio, point it at npx -y @ajsmonty/adobe-mcp and you are done.
ae_save_frame, ps_save_preview, ai_save_preview,
ppro_save_frame) return MCP image content. Claude clients and Cursor render these inline;
clients without image rendering still get the metadata text, and the model can fall back to
exporting a file and reading it from disk.instructions field; most clients pass them to the model, but if yours does not, the same
rules are baked into the tool descriptions and knowledge_search.Drop .jsx / .jsxbin files into scripts/ — they're immediately available via list_ae_scripts / run_ae_script.
run_extendscript..jsx panels with a separable core function can often be driven headlessly by evaluating the source with the UI kickoff stripped.⚠️
scripts/may contain third-party/purchased tools. Keep this repo private unless you've cleared redistribution rights, or addscripts/to.gitignore.
/Applications (newest "Adobe After Effects *"). Override with env var AE_APP_NAME, e.g. "env": {"AE_APP_NAME": "Adobe After Effects 2025"} in the Desktop config or --env AE_APP_NAME=... in claude mcp add.save_frame needs AE 2022+.let/const, JSON, Array.map.project.items, comp.layers, property groups) are 1-indexed."ADBE Glo2-0002"), not display name — display names collide..property() miss throws a native error whose own stringification throws — wrap e.toString() in its own try/catch or your error handler dies too.ADBE Anchor Point).setTemporalEaseAtKey, regardless of dimensions.ADBE Grid-0002 = 3) before animating the anchor, or your "scroll" resizes cells instead.With AE open, ask Claude: "Use get_project_state to show me what's in my AE project, then create a 1920x1080 comp called 'Test' with a headline text layer and show me a frame."
PRs welcome — see CONTRIBUTING.md. All merges to main and dev require
maintainer approval (branch protection + CODEOWNERS). Lessons for the knowledge base are the
easiest high-value contribution. Read SECURITY.md before installing: this
server executes scripts in your Adobe apps by design.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.