This Adobe Premiere Pro MCP server acts as an AI-powered automation bridge for Adobe Premiere Pro, allowing you to control your editing process using natural language through Claude or other AI agents. It leverages the Model Context Protocol (MCP) to enable voice control, task automation, and context-aware workflows in your editing process.
Before installing the MCP server, ensure you have:
git clone https://github.com/hetpatel-11/Adobe_Premiere_Pro_MCP
cd MCP_Adobe_Premiere_Pro
npm install
npm run build
npm start
Install the CEP Extension in Premiere Pro:
Copy the PremiereRemote
extension folder to your Adobe CEP extensions directory:
~/Library/Application Support/Adobe/CEP/extensions/
%APPDATA%/Adobe/CEP/extensions/
Enable loading of unsigned extensions:
~/Library/Preferences/com.adobe.CSXS.9.plist
and set PlayerDebugMode
to 1
.regedit
to set PlayerDebugMode
to 1
under HKEY_CURRENT_USER/Software/Adobe/CSXS.9
.Restart Adobe Premiere Pro
Open the extension by navigating to Window > Extensions (Legacy) > PremiereRemote
The panel should display "Ready!" if the bridge is running correctly
You can also use this project as a UXP panel in Premiere Pro (24.4+):
uxp-plugin/
folderWindow > Plugins > MCP Bridge (UXP)
Note that UXP scripting in Premiere Pro is experimental and limited. Some features like timeline and sequence editing may not be available yet. For full automation capabilities, use the CEP (legacy) panel.
After setting up the MCP server and Premiere Pro extension:
The following features are not supported due to Adobe scripting limitations:
Additionally, be aware of these known issues:
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "adobe-premiere-pro" '{"command":"npm","args":["start"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"adobe-premiere-pro": {
"command": "npm",
"args": [
"start"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"adobe-premiere-pro": {
"command": "npm",
"args": [
"start"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect