Skip to content
VS Code

myvideogift for VS Code

io.github.cryptolibertus/myvideogift

Create and deliver personalized video gifts (photos + an original song) from any agent.

client:VS Code transport:stdio runtime:npm

Install myvideogift in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mvg-api-key",
      "description": "MVG_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mvg-api-base",
      "description": "MVG_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "myvideogift": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "myvideogift-mcp"
      ],
      "env": {
        "MVG_API_KEY": "${input:mvg-api-key}",
        "MVG_API_BASE": "${input:mvg-api-base}"
      }
    }
  }
}

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

myvideogift in other clients