Skip to content
VS Code

Vidgrid — eyes for video for VS Code

io.github.pawvej/vidgrid

Give an AI agent eyes for video: turn a clip into a numbered frame grid + transcript.

client:VS Code transport:stdio runtime:pypi

Install Vidgrid — eyes for video in VS Code

.vscode/mcp.json

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

Vidgrid — eyes for video in other clients