OpenWebhook for VS Code
co.openwebhook/mcp
Inspect webhooks from Cursor or Claude. No account needed. Pro adds permanent slugs.
client:VS Code
transport:stdio
runtime:npm
Install OpenWebhook in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "openwebhook-token",
"description": "OPENWEBHOOK_TOKEN",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"openwebhook"
],
"env": {
"OPENWEBHOOK_TOKEN": "${input:openwebhook-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs