Skip to content
VS Code

feedhook mcp for VS Code

io.github.patwalls/feedhook-mcp

Turn a YouTube channel into a webhook: a signed HTTP POST seconds after every new video.

client:VS Code transport:stdio runtime:npm

Install feedhook mcp in VS Code

.vscode/mcp.json

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

feedhook mcp in other clients