Skip to content
VS Code

adobe premiere mcp for VS Code

io.github.mrfentmen/adobe-premiere-mcp

Control Adobe Premiere Pro video editing via ExtendScript.

client:VS Code transport:stdio runtime:npm

Install adobe premiere mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "premiere-path",
      "description": "PREMIERE_PATH",
      "password": true
    }
  ],
  "servers": {
    "adobe-premiere-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mrfentmen/adobe-premiere-mcp"
      ],
      "env": {
        "PREMIERE_PATH": "${input:premiere-path}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

adobe premiere mcp in other clients