Adobe Agent
Adobe Agent подключает LLM (например Claude) к Photoshop и Premiere Pro, обеспечивая автоматизацию на базе ИИ и управление творческими задачами через диалог. Оптимизируйте рабочие процессы и создавайте контент.
Этот proof-of-concept проект предоставляет большим языковым моделям (LLM), таким как Claude, возможность взаимодействия с Adobe Photoshop и Premiere Pro и управления ими. Он создает надежный коммуникационный мост через протокол MCP, состоящий из MCP-сервера, прокси команд на Node.js и специализированных плагинов для приложений Adobe. Эта инновационная настройка позволяет пользователям отдавать команды на естественном языке своим приложениям Adobe, автоматизируя сложные задачи, генерируя контент и даже предоставляя пошаговые инструкции, фактически превращая LLM в мощных творческих ассистентов.
Ключевые возможности
Варианты использования
adb-mcp is a proof of concept project to create AI Agent for Adobe tools (Adobe Photoshop and Adobe Premiere) by providing an interface to LLMs via the MCP protocol.
The project is not endorsed by nor supported by Adobe.
It has been tested with Claude desktop (Mac and Windows) from Anthropic, and allows Claude to control Adobe Photoshop and Adobe Premiere. Theoretically, it should work with any AI App / LLM that supports the MCP protocol, and is built in a way to support multiple Adobe applications.
Example use cases include:
- Giving Claude step by step instruction on what to do in Photoshop, providing a conversational based interface (particularly useful if you are new to Photoshop).
- Giving Claude a task (create an instagram post that looks like a Polariod image, create a double exposure) and letting it create it from start to finish to use as a template.
- Asking Claude to generate custom Photoshop tutorials for you, by creating an example file, then step by step instructions on how to recreate.
- As a Photoshop utility tool (have Claude rename all of your layers into a consistent format)
- Have Claude create new Premiere projects pre-populations with clips, transitions, effects and Audio
Currently for Photoshop the AI agent can get some information back from Photoshop which enables it to check its work. However, it cannot automatically see its work (i.e. get images from Photoshop). This should be possible, but is not yet implemented. In the meantime, you can copy and paste from Photoshop into Claude desktop.
The Premiere agent is a bit more limited in functionality compared to the Photoshop agent, due to current limitations of the Premiere plugin API.
The proof of concept works by providing:
- A MCP Server that provides an interface to functionality within Adobe Photoshop to the AI / LLM
- A Node based command proxy server that sits between the MCP server and Adobe app plugins
- An Adobe app (Photoshop and Premiere) plugin that listens for commands, and drives the programs
AI <-> MCP Server <-> Command Proxy Server <-> Photoshop / Premiere UXP Plugin <-> Photoshop / Premiere
The proxy server is required because the public facing API for UXP Based JavaScript plugin does not allow it to listen on a socket connection (as a server) for the MCP Server to connect to (it can only connect to a socket as a client).
In order to run this, the following is required:
- AI LLM with support for MCP Protocol (tested with Claude desktop on Mac & Windows)
- Python 3, which is used to run the MCP server provided with this project
- NodeJS, used to provide a proxy between the MCP server and Photoshop
- Adobe UXP Developer tool (available via Creative Cloud) used to install and debug the Photoshop / Premiere plugin used to connect to the proxy
- Adobe Photoshop (26.0 or greater) with the MCP Plugin installed or Adobe Premiere Beta (25.3 Build 46 or greater)
This project has been developed and tested with Claude Desktop, and assumes that is what is being used. It should be possible to use other AI apps that support MCP.
Download the adp-mcp project, and unzip into the location you want to save it.
Download and install Claude Desktop. Once you have done this, launch to make sure everything works.
Make sure you have Python3 installed and configured on your system (in your system PATH). This assumes you are using uv for package management and have it setup and configured on your system.
Change to the mcp directory and start the dev server:
$cd mcp
$uv run mcp dev ps-mcp.py
$cd mcp
$uv run mcp dev pr-mcp.py
You can now load the dev interface at http://localhost:5173, click "connect", and then under "Resources" click "config://get_instructions". This should list out a bunch of JSON info. If it does, everything is working and configured.
Now we can install into Claude Desktop.
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client ps-mcp.py
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client pr-mcp.py
If you have Claude desktop running, close it (make sure its not running in the background) and restart it. If it starts without any errors, you are good to go.
At this point, you still need to install a few more things.
Make sure you have NodeJS installed and configured in your system PATH.
Switch to adb-proxy-socket directory. Install the requirements, and then start the server:
$cd adb-proxy-socket
$npm install
$node proxy.js
You should see a message similar to Photoshop MCP Command proxy server running on ws://localhost:3001.
This proxy must be running in order for Claude to communicate with the plugin.
Enable developer mode in Photoshop
- Launch Photoshop (26.0 or greater)
- Settings > Plugins and check "Enable Developer Mode"
- Restart Photoshop
From Creative Cloud Desktop, install and launch "UXP Developer Tools". When prompted, enable developer mode.
Install the plugin:
- Select File > Add Plugin
- Navigate to the uxp/ps directory, and select the manifest.json file.
- Once the plugin is listed, then click the "Load" button.
This should load the plugin in Photoshop. If you dont see it, you can open it via the plugins menu in Photoshop.
- Launch Premiere Pro Beta (25.3)
From Creative Cloud Desktop, install and launch "UXP Developer Tools". When prompted, enable developer mode.
Install the plugin:
- Select File > Add Plugin
- Navigate to the uxp/pr directory, and select the manifest.json file.
- Once the plugin is listed, then click the "Load" button.
This should load the plugin in Premiere. If you dont see it, you can open it via the plugins menu in Premiere.
Launch the following:
- Claude Desktop
- adb-proxy-socket node server
- Launch Photoshop and / or Premiere
- Launch UXP Developer Tool and click the Load button for Photoshop MCP Agent
- In Photoshop, if the MCP Agent panel is not open, open Plugins > Photoshop MCP Agent > Photoshop MCP Agent
- Click connect in the agent panel in Photoshop
Now you can switch over the Claude desktop. Before you start a session, you should load the instructions resource which will provide guidance and info the Claude by clicking the socket icon (Attach from MCP) and then Choose an Integration > Adobe Photoshop > config://get_instructions.
- Launch UXP Developer Tool and click the Load button for Premiere MCP Agent
- In Premiere, if the MCP Agent panel is not open, open Window > UXP Plugins > Premiere MCP Agent > Premiere MCP Agent
- Click connect in the agent panel in Photoshop
Now you can switch over the Claude desktop. Before you start a session, you should load the instructions resource which will provide guidance and info the Claude by clicking the socket icon (Attach from MCP) and then Choose an Integration > _Adobe Premiere > config://get_instructions.
Note, you must reload the plugin via the UCP Developer app every time you restart Photoshop and Premiere.
In the chat input field, click the "Attach from MCP" button (looks like two sockets). From there click "Choose and integration" and then under "Adobe Photoshop" or "Adobe Premiere" select config://get_instructions. This will load the instructions into the prompt. Submit that to Claude and once it processes it, you are ready to go.
At anytime, you can ask the following:
Can you list what apis / functions are available for working with Photoshop / Premiere?
and it will list out all of the functionality available.
When prompting, you do not need to reference the APIs, just use natural language to give instructions.
For example:
Create a new Photoshop file with a blue background, that is 1080 width by 720 height at 300 dpi
Create a new Photoshop file for an instagram post
Create a double exposure image in Photoshop of a woman and a forest
Generate an image of a forest, and then add a clipping mask to only show the center in a circle
Make something cool with photoshop
Add cross fade transitions between all of the clips on the timeline in Premiere
- When prompting, ask the AI to think about and check its work.
- The more you guide it (i.e. "consider using clipping masks") the better the results
- The more advanced the model, or the more resources given to the model the better and more creative the AI is.
- As a general rule, don't make changes in the Adobe Apps while the AI is doing work. If you do make changes, make sure to tell the AI about it.
- The AI will learn from its mistakes, but will lose its memory once you start a new chat. You can guide it to do things in a different way, and then ask it to start over and it should follow the new approach.
The AI currently has access to a subset of Photoshop / Premiere functionality. In general, the approach has been to provide lower level tools to give the AI the basics to do more complex stuff.
The Photoshop plugin has more functionality that Premiere.
By default, the AI cannot access files directly, although if you install the Claude File System MCP server it can access, and load files into Photoshop / Premiere (open files and embed images).
- You can copy and paste images from Photoshop into the AI to give it more information on what is going on.
- The AI currently has issue sizing and positioning text correctly, so giving it guidelines on font sizes to use will help, as well as telling it to align the text relative to the canvas.
- The AI has access to all of the Postscript fonts on the system. If you want to specify a font, you must use its Postscript name (you may be able to ask the AI for it).
- You can ask the AI for suggestions. It comes up with really useful ideas / feedback sometimes.
- Currently the plugin assumes you are just working with a single sequence.
If you get an error when running Claude that the MCP is not working, you may need to edit your Claud config file and put an abslute path for the UV command. More info here.
- Make sure the app is running before you try to load the plugin.
- In the UXP developer tool click the debug button next to load, and see if there are any errors.
- Make sure the node / proxy server is running. If you plugin connects you should see output similar to:
adb-mcp Command proxy server running on ws://localhost:3001
User connected: Ud6L4CjMWGAeofYAAAAB
Client Ud6L4CjMWGAeofYAAAAB registered for application: photoshop
- When you press the connect button, if it still say connect it means there was either an error, or it can't connect to the proxy server.
- If something fails on the AI side, it will usually tell you the issue. If you click the command / code box, you can see the error.
- The first thing to check if there is an issue is to make sure the plugin in Photoshop / Premiere is connected, and that the node proxy server is running.
- If response times get really slow, check if the AI servers are under load, and that you do not have too much text in the current conversation (restarting a new chat can sometimes help speed up, but you will lose the context).
If you continue to have issues post an Issue on on Discord. Include as much information as you can (OS, App, App version, and debug info or errors).
Adding new functionality is relatively easy, and requires:
- Adding the API and parameters in the mcp/ps-mcp.py / mcp/pr-mcp.py file (which is used by the AI)
- Implementing the API in the uxp/ps/commands/index.js / uxp/pr/commands/index.js file.
TO BE COMPLETED
If you have any questions, feature requests, need help, or just want to chat, join the discord.
You can also log bugs and feature requests on the issues page.
Project released under a MIT License.
Обзор
adb-mcp — это экспериментальный проект, реализующий MCP-сервер для управления Adobe Photoshop и Adobe Premiere Pro через AI-агентов, например, Claude Desktop. Проект не связан с Adobe и не поддерживается ей. Он предоставляет интерфейс для вызова функций Adobe-приложений из LLM через протокол MCP.
Возможности
- Выполнение пошаговых инструкций в Photoshop (полезно новичкам).
- Создание сложных композиций по текстовому описанию (например, «создай Instagram-пост в стиле Polaroid», «сделай двойную экспозицию»).
- Генерация обучающих шаблонов: AI создаёт файл и пошаговое описание.
- Массовые операции: переименование слоёв, обработка папок.
- Создание проектов Premiere с клипами, переходами, эффектами и аудиодорожками.
⚠️ В текущей версии AI не видит изображения из Photoshop автоматически (нет фидбека по картинкам). Копируйте и вставляйте из Photoshop вручную. Premiere-агент имеет меньше возможностей из-за ограничений API плагина.
Как это работает
Схема взаимодействия:
AI (Claude) ↔ MCP-сервер ↔ Node-прокси ↔ UXP-плагин ↔ Приложение Adobe
Прокси-сервер на Node.js необходим, так как UXP-плагины не могут слушать сокет напрямую.
Требования
- AI-клиент с поддержкой MCP (Claude Desktop для Mac/Windows).
- Python 3 и Node.js (установленные и в PATH).
- Adobe UXP Developer Tool (из Creative Cloud).
- Adobe Photoshop 26.0+ или Adobe Premiere Pro Beta 25.3 (Build 46+).
Установка
1. Загрузка проекта
Скачайте репозиторий adb-mcp и распакуйте в нужную папку.
2. Claude Desktop
Установите и запустите Claude Desktop (https://claude.ai/download). Проверьте, что он работает.
3. MCP-сервер
Убедитесь, что Python 3 в PATH. Рекомендуется использовать uv (https://github.com/astral-sh/uv).
Для Photoshop:
cd mcp
uv run mcp dev ps-mcp.py
Для Premiere:
cd mcp
uv run mcp dev pr-mcp.py
Откройте http://localhost:5173, нажмите «connect», затем в разделе Resources выберите config://get_instructions. Если отобразился JSON — всё настроено.
Затем установите сервер в Claude Desktop:
uv run mcp install --with fonttools --with python-socketio --with mcp --with requests --with websocket-client ps-mcp.py
(Для Premiere: замените ps-mcp.py на pr-mcp.py).
Закройте и перезапустите Claude Desktop. Если ошибок нет — можно продолжать.
4. Прокси-сервер Node
Перейдите в папку adb-proxy-socket и выполните:
npm install
node proxy.js
Вы должны увидеть: Photoshop MCP Command proxy server running on ws://localhost:3001. Прокси должен быть запущен постоянно для связи Claude с плагином.
5. Установка UXP-плагинов
Photoshop
- В Photoshop: Settings → Plugins → Enable Developer Mode. Перезапустите Photoshop.
- Установите UXP Developer Tool (из Creative Cloud). Включите режим разработчика.
- В инструменте: File → Add Plugin → выберите
uxp/ps/manifest.json. Нажмите «Load». - Плагин появится в меню Plugins → Photoshop MCP Agent.
Premiere
Аналогично, но используйте папку uxp/pr/manifest.json.
Использование
Запуск
- Запустите Claude Desktop.
- Запустите прокси-сервер (
node proxy.js). - Запустите Photoshop и/или Premiere.
- В UXP Developer Tool нажмите «Load» для соответствующего плагина.
- В приложении Adobe откройте панель плагина (Plugins → Photoshop MCP Agent / Premiere MCP Agent) и нажмите «connect».
Настройка сессии в Claude
В поле ввода нажмите иконку с двумя разъёмами («Attach from MCP»). Выберите интеграцию: Adobe Photoshop или Adobe Premiere. Кликните config://get_instructions. Отправьте это сообщение Claude — после обработки он будет готов к работе.
Формулировка задач
Не нужно знать API. Просто описывайте задачу на естественном языке:
- «Создай новый Photoshop-файл 1080×720, 300 dpi, с голубым фоном».
- «Сделай двойную экспозицию женщины и леса».
- «Добавь кроссфейды между всеми клипами на таймлайне в Premiere».
Чтобы увидеть список доступных функций, спросите: «Какие API есть для работы с Photoshop/Premiere?»
Советы
- Проверка работы: просите AI комментировать свои действия.
- Более точные инструкции → лучший результат (например, «используй обтравочную маску»).
- Не вносите изменения в Adobe-приложения во время работы AI; если сделали — сообщите ему.
- AI учится на ошибках в рамках сессии, но после нового чата память теряется.
- Доступен базовый набор инструментов; Photoshop имеет больше функций, чем Premiere.
- AI не видит файлы напрямую. Для загрузки изображений установите MCP-сервер файловой системы (https://www.claudemcp.com/servers/filesystem).
Для Photoshop
- AI некорректно выставляет размер и позицию текста — уточняйте размер шрифта и выравнивание.
- Используются PostScript-имена шрифтов. Попросите AI подсказать их.
Для Premiere
- Плагин работает только с одной последовательностью.
Устранение неполадок
MCP не работает в Claude
Пропишите абсолютный путь к uv в конфигурации Claude (см. issue (https://github.com/mikechambers/adb-mcp/issues/5#issuecomment-2829817624)).
Плагин не устанавливается или не подключается
- Убедитесь, что приложение запущено до загрузки плагина.
- В UXP Developer Tool нажмите «Debug» рядом с плагином, чтобы увидеть ошибки.
- Проверьте, запущен ли прокси-сервер. В консоли должно быть:
User connected: ...иregistered for application: photoshop. - Если кнопка «connect» не меняется на «connected» — плагин не смог соединиться с прокси.
Ошибки в AI-клиенте
- AI обычно сообщает об ошибке. Нажмите на блок с командой, чтобы увидеть детали.
- Сначала проверьте подключение плагина и работу прокси.
- Если ответы тормозят — перегружены серверы AI или набралось много текста в чате. Новый чат ускорит работу, но контекст потеряется.
- При серьёзных проблемах создавайте Issue (https://github.com/mikechambers/adb-mcp/issues) или пишите в Discord (https://discord.gg/fgxw9t37D7). Указывайте ОС, версию приложения и текст ошибки.
Разработка
Добавление новых функций:
- Опишите API и параметры в
mcp/ps-mcp.pyилиmcp/pr-mcp.py. - Реализуйте логику в
uxp/ps/commands/index.jsилиuxp/pr/commands/index.js.
Подробное руководство — в процессе.
Обратная связь
Вопросы, идеи и предложения — в Discord (https://discord.gg/fgxw9t37D7). Баги и фич-реквесты — на GitHub Issues (https://github.com/mikechambers/adb-mcp/issues).
Лицензия
Проект распространяется под MIT License (https://github.com/mikechambers/adb-mcp/blob/main/LICENSE.md).
Какие модели ИИ совместимы с Adobe Agent?
Протестировано и подтверждено, что оно работает с Claude Desktop от Anthropic. Теоретически оно создано для поддержки любых AI-приложений или LLM, которые соответствуют протоколу MCP.
Как Adobe Agent улучшает творческие рабочие процессы?
Он позволяет управлять через диалог, автоматизировать повторяющиеся задачи, создавать пользовательский контент или учебные пособия, а также шаблоны проектов, что значительно повышает эффективность и творческую отдачу в приложениях Adobe.
Что такое Adobe Agent?
Adobe Agent — это концептуальный проект, который подключает большие языковые модели (LLM) к Adobe Photoshop и Premiere Pro через протокол MCP, обеспечивая управление и автоматизацию творческих задач с помощью ИИ.
Какие приложения Adobe поддерживает Adobe Agent?
В настоящее время Adobe Agent поддерживает Adobe Photoshop (версия 26.0 или новее) и Adobe Premiere Pro Beta (версия 25.3 Build 46 или новее), при этом для Photoshop доступен более широкий функционал.
Официально ли поддерживается Adobe Agent компанией Adobe?
Нет, Adobe Agent — это независимый концептуальный проект (adb-mcp) и не одобрен и официально не поддерживается компанией Adobe Systems Inc.
Источник: https://mcpmarket.com/server/adobe-agent
Комментарии
Комментариев пока нет. Будьте первым.