hooksense for VS Code
io.github.ozers/hooksense
Webhook & callback layer for AI agents: create a URL, wait_for_callback, and verify over MCP.
client:VS Code
transport:stdio
runtime:npm
Install hooksense in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hooksense-token",
"description": "HOOKSENSE_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "hooksense-api",
"description": "HOOKSENSE_API",
"password": true
}
],
"servers": {
"hooksense": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hooksense/mcp"
],
"env": {
"HOOKSENSE_TOKEN": "${input:hooksense-token}",
"HOOKSENSE_API": "${input:hooksense-api}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs