premiere-pro-mcp 1.2.1 → 1.2.2
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 +4 -3
- package/cep-plugin/CSXS/manifest.xml +3 -3
- package/package.json +1 -1
- 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.2] - 2026-07-23
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Corrected obsolete repository links in the npm README and republished package metadata so the
|
|
14
|
+
repository, homepage, and issue links point to the maintained project.
|
|
15
|
+
|
|
9
16
|
### Added
|
|
10
17
|
|
|
11
18
|
- Added `npm run publish:npm`, `npm run publish:npm:dry-run`, and a manual GitHub Actions npm
|
package/README.md
CHANGED
|
@@ -27,8 +27,9 @@ 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.2
|
|
31
31
|
|
|
32
|
+
- npm repository, homepage, issue, and clone links now point to the maintained project.
|
|
32
33
|
- Mutation tools now verify Premiere state, audio dB is converted to amplitude correctly, and
|
|
33
34
|
affected Premiere Pro 26.3 hosts return actionable errors instead of false success.
|
|
34
35
|
- npm publishing now has a guided local helper and a GitHub Actions workflow so releases can be
|
|
@@ -56,7 +57,7 @@ npm install -g premiere-pro-mcp
|
|
|
56
57
|
**Option B — Clone from source:**
|
|
57
58
|
|
|
58
59
|
```bash
|
|
59
|
-
git clone https://github.com/
|
|
60
|
+
git clone https://github.com/leancoderkavy/premiere-pro-mcp.git
|
|
60
61
|
cd premiere-pro-mcp
|
|
61
62
|
npm install
|
|
62
63
|
npm run build
|
|
@@ -422,7 +423,7 @@ A live instance is running at **https://premiere-pro-mcp.fly.dev**.
|
|
|
422
423
|
|
|
423
424
|
```bash
|
|
424
425
|
# Clone and deploy your own instance
|
|
425
|
-
git clone https://github.com/
|
|
426
|
+
git clone https://github.com/leancoderkavy/premiere-pro-mcp.git
|
|
426
427
|
cd premiere-pro-mcp
|
|
427
428
|
fly apps create your-app-name
|
|
428
429
|
# 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.2" 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.2"/>
|
|
5
|
+
<Extension Id="com.mcp.premiere.bridge.headless" Version="1.2.2"/>
|
|
6
6
|
</ExtensionList>
|
|
7
7
|
<ExecutionEnvironment>
|
|
8
8
|
<HostList>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "premiere-pro-mcp",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Open-source MCP server with 269 tools for AI-assisted Adobe Premiere Pro editing, automation, effects, media management, and export.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
package/uxp-plugin/manifest.json
CHANGED