Skip to content
VS Code

github webhook mcp for VS Code

io.github.liplus-project/github-webhook-mcp

MCP server bridging GitHub webhooks via Cloudflare Worker for real-time event streaming

client:VS Code transport:stdio runtime:npm

Install github webhook mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "webhook-worker-url",
      "description": "WEBHOOK_WORKER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "webhook-channel",
      "description": "WEBHOOK_CHANNEL",
      "password": true
    }
  ],
  "servers": {
    "github-webhook-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "github-webhook-mcp"
      ],
      "env": {
        "WEBHOOK_WORKER_URL": "${input:webhook-worker-url}",
        "WEBHOOK_CHANNEL": "${input:webhook-channel}"
      }
    }
  }
}

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

github webhook mcp in other clients