Skip to content
VS Code

vidlens mcp for VS Code

io.github.rajanrengasamy/vidlens-mcp

YouTube intelligence layer for AI agents. 41 tools, 10 modules, zero config.

client:VS Code transport:stdio runtime:npm

Install vidlens mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "youtube-api-key",
      "description": "YOUTUBE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gemini-api-key",
      "description": "GEMINI_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "vidlens-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "vidlens-mcp"
      ],
      "env": {
        "YOUTUBE_API_KEY": "${input:youtube-api-key}",
        "GEMINI_API_KEY": "${input:gemini-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

vidlens mcp in other clients