premiere-pro-mcp

premiere-pro-mcp is a skill for Claude Code, Codex from hetpatel-11/Adobe_Premiere_Pro_MCP. It costs 64 tokens per session (1,230 once invoked), scanned A, original, MIT.

A setup and operations guide for connecting an agent to Adobe Premiere Pro, a video-editing application, through an MCP server.

In plain words
What is it for?
Use it to install or troubleshoot the Premiere connection, import media, create sequences, edit timelines, apply effects, and inspect projects.
Why use it?
It helps diagnose connection problems and keeps project changes controlled by checking available media and project information before editing.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code; mentions Codex.

Good fit Use it to install or troubleshoot the Premiere connection, import media, create sequences, edit timelines, apply effects, and inspect projects.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hetpatel-11/adobe_premiere_pro_mcp/premiere-pro-mcp
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hetpatel-11/Adobe_Premiere_Pro_MCP --skill premiere-pro-mcp
Clone the repo
git clone --depth 1 https://github.com/hetpatel-11/Adobe_Premiere_Pro_MCP

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for premiere-pro-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/hetpatel-11/adobe_premiere_pro_mcp/premiere-pro-mcp/github.svg)](https://agentmods.dev/skills/hetpatel-11/adobe_premiere_pro_mcp/premiere-pro-mcp)
Your own site
<a href="https://agentmods.dev/skills/hetpatel-11/adobe_premiere_pro_mcp/premiere-pro-mcp"><img src="https://agentmods.dev/badge/skills/hetpatel-11/adobe_premiere_pro_mcp/premiere-pro-mcp/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for premiere-pro-mcp

Your own site · 80×15
<a href="https://agentmods.dev/skills/hetpatel-11/adobe_premiere_pro_mcp/premiere-pro-mcp"><img src="https://agentmods.dev/badge/skills/hetpatel-11/adobe_premiere_pro_mcp/premiere-pro-mcp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,230 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 16 May 2026
  • Snyk warn 16 May 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00064 $0.01230
Opus 5 $0.00032 $0.00615
Sonnet 5 $0.00013 $0.00246
Haiku 4.5 $0.00006 $0.00123

Measured 8d ago against content hash 07292c8755d0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

premiere-pro-mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/premiere-pro-mcp/SKILL.md · 121 lines

How it starts

The opening of the file, as written. The whole thing — 121 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Adobe Premiere Pro MCP

Use this skill when working with the Adobe Premiere Pro MCP server from hetpatel-11/Adobe_Premiere_Pro_MCP.

Core Rules

  • Use the MCP tools for Premiere operations; do not invent ExtendScript unless the MCP tool surface is missing the needed operation.
  • Default MCP tools/list is a small always-on set. Call search_tools (BM25 query or regex pattern), then invoke_tool with the exact name. PREMIERE_MCP_TOOLSET=full lists every tool.
  • Prefer read-only discovery first: get_project_info, list_sequences, list_project_items, get_active_sequence, and relevant resource reads.
  • Use real imported media. If the user asks to edit with assets, verify file paths exist, import them with import_media, then place the imported project item IDs on a sequence.
  • Keep the temp directory consistent across the MCP server and CEP panel: /tmp/premiere-mcp-bridge unless the user explicitly configured another path.
  • Ask before destructive or externally visible actions: deleting clips/media, overwriting exports, closing projects, saving over important project files, or sending files elsewhere.
  • For generated/demo edits, prefer creating a new clearly named sequence instead of modifying the user's active sequence.
  • If a tool returns success: false, report the exact error and run diagnostics before retrying blindly.

Install Workflow

If the user asks you to install or set up the MCP:

  1. Check the OS. The automated installer is macOS-focused.
  2. Clone or open the repo:
git clone https://github.com/hetpatel-11/Adobe_Premiere_Pro_MCP.git
cd Adobe_Premiere_Pro_MCP
  1. On macOS, run:
npm run setup:mac
  1. For non-macOS or manual client setup, run:
npm install
npm run build
  1. Register the MCP server in the user's client with:
command: node /absolute/path/to/Adobe_Premiere_Pro_MCP/dist/index.js
env: PREMIERE_TEMP_DIR=/tmp/premiere-mcp-bridge

For Codex, prefer:

codex mcp add premiere_pro --env PREMIERE_TEMP_DIR=/tmp/premiere-mcp-bridge -- node /absolute/path/to/Adobe_Premiere_Pro_MCP/dist/index.js

Read the full file on GitHub · 121 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago Changed · +1 lines 07292c8755d0
  2. 12d ago First seen · 120 lines · 64 tokens per session scan A 3f821cc72916

Subscribe to this mod's changes

premiere-pro-mcp is a skill published in the GitHub repository hetpatel-11/Adobe_Premiere_Pro_MCP (541 stars, last pushed 8d ago), licensed MIT. It adds 64 tokens to every session and 1,230 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

premiere-dialogue-cut

Tighten interviews, podcasts, tutorials, and talking-head edits in Adobe Premiere Pro by detecting silence, preserving natural speech margins, keeping an untouched recovery sequence, and verifying sync. Use for pause removal, dialogue cleanup, jump-cut planning, or rough-cut acceleration through the Premiere Pro MCP…

ayushozha/AdobePremiereProMCP · 65 tokens

premiere-social-reframe

Produce vertical, square, and platform-specific versions of an Adobe Premiere Pro sequence while preserving the master edit. Use for 9:16, 1:1, and social cutdowns, Auto Reframe workflows, safe-zone checks, title repositioning, or multi-platform exports through the Premiere Pro MCP server.

ayushozha/AdobePremiereProMCP · 68 tokens

premiere-batch-delivery

Validate, export, and inspect multiple Adobe Premiere Pro deliverables with explicit pending and unverified states. Use for YouTube, social, web, mobile, archive, audio-only, versioned export, delivery QA, caption validation, direct export, AME submission, or repeatable batch output through the Premiere Pro MCP server.

ayushozha/AdobePremiereProMCP · 72 tokens

premiere-captions

Import, verify, structurally validate, and export timed captions or subtitles in Adobe Premiere Pro. Use for SRT workflows, supplied timed transcripts, caption QA, accessibility checks, or sidecar subtitle delivery through the Premiere Pro MCP server.

ayushozha/AdobePremiereProMCP · 53 tokens

premiere-proxy-conform

Speed Adobe Premiere Pro editing with proxy creation, attachment, media matching, and original-media readiness checks. Use for high-resolution or remote-media projects, batch proxy preparation, relinking, proxy status audits, or pre-delivery original-media checks through the Premiere Pro MCP server.

ayushozha/AdobePremiereProMCP · 61 tokens

premiere-look-effects

Build consistent, reversible visual effect recipes in Adobe Premiere Pro from effects confirmed as installed. Use for clip effects, parameterized looks, motion treatments, vignettes, controlled tests, or applying one approved recipe across multiple clips through the Premiere Pro MCP server.

ayushozha/AdobePremiereProMCP · 56 tokens