premiere-pro-mcp 1.2.1 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +6 -3
- package/cep-plugin/CSXS/manifest.xml +3 -3
- package/package.json +16 -3
- package/uxp-plugin/manifest.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.2.3] - 2026-07-23
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Improved npm and GitHub discovery metadata, added explicit TypeScript and public-registry package
|
|
14
|
+
configuration, and added automated dependency update configuration.
|
|
15
|
+
|
|
16
|
+
## [1.2.2] - 2026-07-23
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Corrected obsolete repository links in the npm README and republished package metadata so the
|
|
21
|
+
repository, homepage, and issue links point to the maintained project.
|
|
22
|
+
|
|
9
23
|
### Added
|
|
10
24
|
|
|
11
25
|
- Added `npm run publish:npm`, `npm run publish:npm:dry-run`, and a manual GitHub Actions npm
|
package/README.md
CHANGED
|
@@ -27,8 +27,11 @@ An [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server that l
|
|
|
27
27
|
|
|
28
28
|
The AI handles the entire workflow through 269 tools spanning the supported ExtendScript, QE DOM, and safe edit-planning surfaces.
|
|
29
29
|
|
|
30
|
-
### What's new in 1.2.
|
|
30
|
+
### What's new in 1.2.3
|
|
31
31
|
|
|
32
|
+
- npm and GitHub metadata now target Adobe Premiere Pro MCP, AI video editing, automation, and
|
|
33
|
+
Model Context Protocol discovery terms with explicit TypeScript and public-registry metadata.
|
|
34
|
+
- npm repository, homepage, issue, and clone links now point to the maintained project.
|
|
32
35
|
- Mutation tools now verify Premiere state, audio dB is converted to amplitude correctly, and
|
|
33
36
|
affected Premiere Pro 26.3 hosts return actionable errors instead of false success.
|
|
34
37
|
- npm publishing now has a guided local helper and a GitHub Actions workflow so releases can be
|
|
@@ -56,7 +59,7 @@ npm install -g premiere-pro-mcp
|
|
|
56
59
|
**Option B — Clone from source:**
|
|
57
60
|
|
|
58
61
|
```bash
|
|
59
|
-
git clone https://github.com/
|
|
62
|
+
git clone https://github.com/leancoderkavy/premiere-pro-mcp.git
|
|
60
63
|
cd premiere-pro-mcp
|
|
61
64
|
npm install
|
|
62
65
|
npm run build
|
|
@@ -422,7 +425,7 @@ A live instance is running at **https://premiere-pro-mcp.fly.dev**.
|
|
|
422
425
|
|
|
423
426
|
```bash
|
|
424
427
|
# Clone and deploy your own instance
|
|
425
|
-
git clone https://github.com/
|
|
428
|
+
git clone https://github.com/leancoderkavy/premiere-pro-mcp.git
|
|
426
429
|
cd premiere-pro-mcp
|
|
427
430
|
fly apps create your-app-name
|
|
428
431
|
# Required: add bearer token auth
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<ExtensionManifest Version="7.0" ExtensionBundleId="com.mcp.premiere.bridge" ExtensionBundleVersion="1.2.
|
|
2
|
+
<ExtensionManifest Version="7.0" ExtensionBundleId="com.mcp.premiere.bridge" ExtensionBundleVersion="1.2.3" ExtensionBundleName="MCP Bridge">
|
|
3
3
|
<ExtensionList>
|
|
4
|
-
<Extension Id="com.mcp.premiere.bridge.panel" Version="1.2.
|
|
5
|
-
<Extension Id="com.mcp.premiere.bridge.headless" Version="1.2.
|
|
4
|
+
<Extension Id="com.mcp.premiere.bridge.panel" Version="1.2.3"/>
|
|
5
|
+
<Extension Id="com.mcp.premiere.bridge.headless" Version="1.2.3"/>
|
|
6
6
|
</ExtensionList>
|
|
7
7
|
<ExecutionEnvironment>
|
|
8
8
|
<HostList>
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "premiere-pro-mcp",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.2.3",
|
|
4
|
+
"description": "Adobe Premiere Pro MCP server with 269 AI video editing tools for timeline automation, effects, media management, and export.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"bin": {
|
|
8
9
|
"premiere-pro-mcp": "dist/index.js"
|
|
@@ -53,9 +54,21 @@
|
|
|
53
54
|
"automation",
|
|
54
55
|
"ai-video-editing",
|
|
55
56
|
"premiere-automation",
|
|
56
|
-
"claude-desktop"
|
|
57
|
+
"claude-desktop",
|
|
58
|
+
"adobe-premiere-pro",
|
|
59
|
+
"video-editing-automation",
|
|
60
|
+
"ai-video-editor",
|
|
61
|
+
"mcp-server",
|
|
62
|
+
"mcp-tools",
|
|
63
|
+
"creative-cloud",
|
|
64
|
+
"premiere-pro-plugin",
|
|
65
|
+
"claude-code"
|
|
57
66
|
],
|
|
58
67
|
"license": "MIT",
|
|
68
|
+
"publishConfig": {
|
|
69
|
+
"access": "public",
|
|
70
|
+
"registry": "https://registry.npmjs.org/"
|
|
71
|
+
},
|
|
59
72
|
"engines": {
|
|
60
73
|
"node": ">=18.0.0"
|
|
61
74
|
},
|
package/uxp-plugin/manifest.json
CHANGED