Skip to content
VS Code

ClipUGC for VS Code

io.github.clipugc/clipugc

Create AI influencer characters, looks, video clips and merged UGC app ads with ClipUGC.

client:VS Code transport:stdio runtime:npm

Install ClipUGC in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "clipugc-api-key",
      "description": "CLIPUGC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clipugc-api-base-url",
      "description": "CLIPUGC_API_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "clipugc": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "clipugc"
      ],
      "env": {
        "CLIPUGC_API_KEY": "${input:clipugc-api-key}",
        "CLIPUGC_API_BASE_URL": "${input:clipugc-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

ClipUGC in other clients