Skip to content
VS Code

mcp server for VS Code

io.github.ilovevideoeditor/mcp-server

Render videos from JSON with motion-design templates, effects and batch rendering

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vf-api-key",
      "description": "VF_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vf-api-base-url",
      "description": "VF_API_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@ilovevideoeditor/mcp-server"
      ],
      "env": {
        "VF_API_KEY": "${input:vf-api-key}",
        "VF_API_BASE_URL": "${input:vf-api-base-url}"
      }
    }
  }
}

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

mcp server in other clients