premiere-pro-mcp 1.2.2 → 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 +7 -0
- package/README.md +3 -1
- 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,13 @@ 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
|
+
|
|
9
16
|
## [1.2.2] - 2026-07-23
|
|
10
17
|
|
|
11
18
|
### Fixed
|
package/README.md
CHANGED
|
@@ -27,8 +27,10 @@ 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.
|
|
32
34
|
- npm repository, homepage, issue, and clone links now point to the maintained project.
|
|
33
35
|
- Mutation tools now verify Premiere state, audio dB is converted to amplitude correctly, and
|
|
34
36
|
affected Premiere Pro 26.3 hosts return actionable errors instead of false success.
|
|
@@ -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