Skip to content
VS Code

video editing mcp for VS Code

io.github.burningion/video-editing-mcp

MCP Server for Video Jungle - Analyze, Search, Generate, and Edit Videos

client:VS Code transport:stdio runtime:pypi

Install video editing mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vj-api-key",
      "description": "VJ_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "video-editing-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "video-editor-mcp"
      ],
      "env": {
        "VJ_API_KEY": "${input:vj-api-key}"
      }
    }
  }
}

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

video editing mcp in other clients