Skip to content
VS Code

clipmaster mcp for VS Code

io.github.n0sp00n/clipmaster-mcp

AI video clipping with ClipMaster (clipmaster.app): clips, exports, scheduling.

client:VS Code transport:stdio runtime:pypi

Install clipmaster mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "clipmaster-api-key",
      "description": "CLIPMASTER_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "clipmaster-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "clipmaster-mcp"
      ],
      "env": {
        "CLIPMASTER_API_KEY": "${input:clipmaster-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

clipmaster mcp in other clients