Adobe Photoshop MCP工具 是 AI Skill Hub 本期精选MCP工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
Adobe Photoshop MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Adobe Photoshop MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/dcc-mcp/dcc-mcp-photoshop
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"adobe-photoshop-mcp--": {
"command": "npx",
"args": ["-y", "dcc-mcp-photoshop"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Adobe Photoshop MCP工具 执行以下任务... Claude: [自动调用 Adobe Photoshop MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"adobe_photoshop_mcp__": {
"command": "npx",
"args": ["-y", "dcc-mcp-photoshop"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Bring Adobe Photoshop to MCP-native AI agents.
dcc-mcp-photoshop turns Photoshop into a standards-compliant MCP Streamable HTTP backend via a UXP WebSocket plugin. Agents can inspect documents, create and edit layers, apply text, export images, and automate Photoshop workflows through typed tools instead of brittle ad-hoc scripts.
The Python bridge runs a WebSocket server that the UXP plugin connects to as a client (UXP only supports WS client mode). All Photoshop automation goes through the adobepy facade layer, which abstracts over the WebSocket bridge.
| Feature | Surface |
|---|---|
| Capability manifest | dcc_capability_manifest({"loaded_only": false}) returns a compact index of loaded and unloaded Photoshop skills. |
| UXP plugin reconnect | Exponential back-off: 3s → 6s → 12s → ... → 60s maximum. |
| Persistent logging | Bridge log written to UXP PluginData directory (bridge.log). |
| Connection UI | Panel shows Connected / Disconnected / Connecting status with manual connect/disconnect. |
| Cross-process RPC | HTTP RPC server on port 9100 for gateway mode inter-process bridge access. |
| Lazy skill loading | load_skill meta-tool expands the tool surface on demand. |
dcc-mcp-core >= 0.18.14, < 1.0.0adobepy >= 0.1.0websockets >= 12.0pip install pyoxidizer)| Path | Photoshop Required? | Python Required? |
|---|---|---|
| pip install | Yes (UXP plugin) | Yes |
| Standalone binary | Yes (UXP plugin) | No |
| UXP .ccx plugin only | Yes | No (bridge binary only) |
Download the latest .ccx from GitHub Releases, install via Creative Cloud Desktop, and restart Photoshop.
The plugin automatically starts the bundled sidecar (bridge + MCP server) when Photoshop loads.
load_skill("photoshop-setup")
| Tool | Description |
|---|---|
check_environment | Check system prerequisites |
install_package | Install via pip |
setup_uxp_plugin | Install UXP .ccx plugin |
start_server | Start server (dev mode) |
verify_connection | Verify bridge connection |
configure_mcp_client | Auto-configure MCP client configs for Claude Desktop, Cursor, VS Code |
This mode uses the standalone dcc-mcp-server for the MCP server and dcc-mcp-photoshop as a lightweight bridge plugin.
Terminal 1 — Start the MCP server (Rust binary, no Python needed):
dcc-mcp-server --dcc photoshop --mcp-port 8765 \
--skill-paths ./skills --no-bridge \
--gateway-port 9765 --registry-dir ~/.dcc-mcp/registry
Terminal 2 — Start the bridge plugin:
python -m dcc_mcp_photoshop
MCP clients connect to the gateway URL: - http://127.0.0.1:9765/mcp — Gateway proxy (recommended): unified facade for all DCCs, auto-discovers the correct DCC on each call - http://127.0.0.1:8765/mcp — Direct access (useful for debugging or single-DCC setups)
The gateway /mcp endpoint aggregates tools from ALL registered DCCs (Maya, Houdini, Blender, Photoshop, etc.). On tools/call, the gateway auto-discovers the correct DCC instance via the capability index.
The UXP plugin lives at bridge/uxp-plugin/. To load from source in Photoshop:
bridge/uxp-plugin/ and select manifest.jsoncurl -LO https://github.com/dcc-mcp/dcc-mcp-photoshop/releases/latest/download/dcc-mcp-photoshop-linux chmod +x dcc-mcp-photoshop ./dcc-mcp-photoshop --help ```
Point your MCP client to the gateway URL. The gateway auto-discovers which DCC (Photoshop, Maya, etc.) to route each tool call to, so you only need one endpoint:
{
"mcpServers": {
"photoshop": {
"url": "http://127.0.0.1:9765/mcp"
}
}
}
{
"mcpServers": {
"photoshop": {
"url": "http://127.0.0.1:9765/mcp"
}
}
}
The gateway URL (:9765) is a unified facade that aggregates tools from all registered DCCs. On tools/call, the gateway auto-discovers the correct DCC instance via the capability index — no need to specify the DCC type in the URL.
Embedded mode via command:
{
"mcpServers": {
"photoshop": {
"command": "dcc-mcp-photoshop",
"args": ["--embedded"],
"env": {}
}
}
}
In Cursor Settings → Features → MCP Servers:
Name: photoshop
Type: url
URL: http://127.0.0.1:9765/mcp
{
"mcp": {
"servers": {
"photoshop": {
"command": "dcc-mcp-photoshop",
"args": ["--embedded"]
}
}
}
}
| Variable | Description | Default |
|---|---|---|
DCC_MCP_REGISTRY_DIR | Shared FileRegistry directory for gateway discovery | ~/.dcc-mcp/registry |
DCC_MCP_PHOTOSHOP_SKILL_PATHS | Extra skill directories (colon-separated) | — |
DCC_MCP_SKILL_PATHS | Global extra skill directories | — |
DCC_MCP_GATEWAY_PORT | Gateway competition port | 9765 |
export DCC_MCP_PHOTOSHOP_SKILL_PATHS=/path/to/my/skills
dcc-mcp-photoshop --embedded --skill-paths /path/to/my/skills
dcc-mcp-photoshop [OPTIONS]
Options:
--embedded Embedded mode: MCP server + bridge in one process (dev only)
--mcp-port PORT MCP HTTP server port (embedded mode; default: 8765)
--ws-port PORT WebSocket bridge port for UXP plugin (default: 9001)
--ws-host HOST WebSocket bind host (default: localhost)
--rpc-port PORT HTTP RPC server port for cross-process bridge access (default: 9100)
--gateway-port PORT Gateway competition port (embedded mode; default: 9765)
--server-name NAME Server name reported in MCP initialize (default: photoshop-mcp)
--skill-paths PATH Extra skill directories
--no-builtins Do not discover built-in skills
--verbose, -v Enable debug logging
--version Show version and exit
```python import dcc_mcp_photoshop
handle = dcc_mcp_photoshop.start_server(port=8765, ws_port=9001) print(f"MCP URL: {handle.mcp_url()}")
Install the .ccx into Photoshop if you only need the UXP sidecar:
.ccx from the latest release assets.ccx fileManual install:
```powershell
bridge/uxp-plugin/manifest.json declares:
| Field | Value |
|---|---|
| Plugin ID | com.dcc-mcp.photoshop-bridge |
| Name | dcc-mcp Bridge |
| Host app | Photoshop (PS) |
| Min version | Photoshop 2022 (22.0.0) |
| Network permissions | All domains |
manifest.json~/.dcc-mcp/logs/photoshop-bridge.logdcc-mcp-photoshop 将 Adobe Photoshop 转换为符合 MCP Streamable HTTP 标准的后端服务。通过 UXP WebSocket 插件,AI 代理可以检查文档、创建编辑图层、应用文本、导出图像,并通过类型化工具自动化 Photoshop 工作流,替代脆弱的临时脚本。Python 桥接层运行 WebSocket 服务器与 UXP 插件通信。
支持能力清单查询返回已加载和未加载的 Photoshop 技能索引;UXP 插件采用指数退避重连机制(3秒→6秒→12秒→...→60秒上限);持久化日志写入 UXP PluginData 目录;面板显示连接状态(已连接/已断开)。这些运行时特性确保稳定的代理-Photoshop 交互。
需要 Adobe Photoshop 2022 及以上版本(支持 UXP);Python 3.8+ 环境;自动安装依赖包括 dcc-mcp-core(≥0.18.14, <1.0.0)、adobepy(≥0.1.0)、websockets(≥12.0)。建议通过 pip 管理 Python 路径,确保依赖完整安装。
从 GitHub Releases 下载最新 .ccx 文件,通过 Creative Cloud Desktop 安装并重启 Photoshop;插件启动时自动启动捆绑��� sidecar(bridge + MCP 服务器)。或下载对应平台的二进制文件(Linux/macOS/Windows),赋予执行权限后直接运行。支持一键设置工具检查环境、安装包、验证连接。
下载最新发布的二进制文件,赋予执行权限后运行 `./dcc-mcp-photoshop --help` 查看选项。支持嵌入式模式(MCP 服务器 + bridge 单进程)和分离模式。可通过 Python API 调用 `dcc_mcp_photoshop.start_server()` 启动服务器并获取 MCP URL。
MCP 客户端指向网关 URL `http://127.0.0.1:9765/mcp`。网关自动发现并路由工具调用到对应 DCC(Photoshop、Maya 等),无需在 URL 中指定 DCC 类型。Claude Desktop 配置示例:在 mcpServers 中添加 photoshop 条目,指向网关 URL。支持自定义 MCP 端口(默认 8765)、WebSocket 端口(默认 9001)和绑定主机。
CLI 支持 --embedded(嵌入模式)、--mcp-port(MCP 服务器端口)、--ws-port(WebSocket 端口)、--ws-host(绑定主机)等选项。Python API 通过 `dcc_mcp_photoshop.start_server(port, ws_port)` 启动服务器,返回句柄对象提供 `mcp_url()` 方法获取服务地址。
UXP .ccx 插件包含 JavaScript WebSocket 客户端和 Python WebSocket 服务器桥接层,实现 JSON-RPC 2.0 协议通信。插件清单声明 ID 为 com.dcc-mcp.photoshop-bridge,支持 Photoshop 2022+,具有全域网络权限。v0.2.0 版本包含 20+ Photoshop 技能、跨进程 RPC 桥接、完整发布分发(pip、二进制、.ccx)。
该项目提供了一个开源的MCP工具,适用于Adobe Photoshop,虽然star数较少,但仍然值得关注
该工具未明确声明开源协议,商业使用前请联系原作者确认授权范围,避免侵权风险。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
经综合评估,Adobe Photoshop MCP工具 在MCP工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | dcc-mcp-photoshop |
| 原始描述 | 开源MCP工具:Adobe Photoshop adapter for the DCC Model Context Protocol (MCP) ecosystem — bri。⭐6 · Python |
| Topics | adobeaidccllmmcppython |
| GitHub | https://github.com/dcc-mcp/dcc-mcp-photoshop |
| 语言 | Python |
收录时间:2026-06-09 · 更新时间:2026-06-11 · License:未公布 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端