Skip to content
VS Code

watch cli for VS Code

io.github.sonpiaz/watch-cli

Hand any social video to your AI agent — frames + transcript bundled. MCP server for watch-cli.

client:VS Code transport:stdio runtime:npm

Install watch cli in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kyma-api-key",
      "description": "KYMA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "groq-api-key",
      "description": "GROQ_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "watch-audio-mode",
      "description": "WATCH_AUDIO_MODE",
      "password": true
    }
  ],
  "servers": {
    "watch-cli": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@sonpiaz/watch-cli-mcp"
      ],
      "env": {
        "KYMA_API_KEY": "${input:kyma-api-key}",
        "GROQ_API_KEY": "${input:groq-api-key}",
        "WATCH_AUDIO_MODE": "${input:watch-audio-mode}"
      }
    }
  }
}

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

watch cli in other clients