Adobe MCP通过模型上下文协议(MCP)为Adobe创意套件应用程序(如Photoshop、Premiere Pro、Illustrator和InDesign)提供AI驱动的自动化。这使得像Claude这样的AI助手能够使用自然语言来控制Adobe应用程序。
该系统采用三层架构:
git clone https://github.com/yourusername/adobe-mcp.git
cd adobe-mcp
pip install -e .
cd proxy-server
npm install
cd ..
adobe-proxy
# Photoshop
adobe-photoshop
# Premiere Pro
adobe-premiere
# Illustrator(包括内置代理)
adobe-illustrator
# InDesign
adobe-indesign
添加到你的Claude桌面配置中:
{
"mcpServers": {
"adobe-photoshop": {
"command": "adobe-photoshop"
},
"adobe-premiere": {
"command": "adobe-premiere"
},
"adobe-illustrator": {
"command": "adobe-illustrator"
},
"adobe-indesign": {
"command": "adobe-indesign"
}
}
}
uxp-plugins/photoshop 对于Photoshopuxp-plugins/premiere 对于Premiere Prouxp-plugins/illustrator 对于Illustratoruxp-plugins/indesign 对于InDesignmanifest.json文件adobe-mcp/
├── adobe_mcp/ # Python MCP服务器
│ ├── photoshop/ # Photoshop MCP服务器
│ ├── premiere/ # Premiere Pro MCP服务器
│ ├── illustrator/ # Illustrator MCP服务器
│ ├── indesign/ # InDesign MCP服务器
│ └── shared/ # 共享工具
├── uxp-plugins/ # Adobe UXP插件
│ ├── photoshop/ # Photoshop插件
│ ├── premiere/ # Premiere插件
│ ├── illustrator/ # Illustrator插件
│ └── indesign/ # InDesign插件
├── proxy-server/ # WebSocket代理服务器
└── docs/ # 文档
MIT许可证 - 详情见LICENSE文件。
欢迎贡献!请阅读CONTRIBUTING.md以获取指南。
本项目整合了来自多个Adobe自动化项目的成果和贡献者。 </中文翻译>