Skip to content
VS Code

youtube organic mcp for VS Code

io.github.lanternrow/youtube-organic-mcp

YouTube organic analytics — channel stats, video performance, watch time & audience insights.

client:VS Code transport:stdio runtime:npm

Install youtube organic mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "youtube-client-id",
      "description": "YOUTUBE_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "youtube-client-secret",
      "description": "YOUTUBE_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "youtube-refresh-token",
      "description": "YOUTUBE_REFRESH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "youtube-organic-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "youtube-organic-mcp"
      ],
      "env": {
        "YOUTUBE_CLIENT_ID": "${input:youtube-client-id}",
        "YOUTUBE_CLIENT_SECRET": "${input:youtube-client-secret}",
        "YOUTUBE_REFRESH_TOKEN": "${input:youtube-refresh-token}"
      }
    }
  }
}

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

youtube organic mcp in other clients