AnyHook (moved) for VS Code
io.github.gba3124/mcp
Moved to net.anyhook/anyhook. Webhook relay for agents: keyless quickstart, replay, mock.
client:VS Code
transport:stdio
runtime:npm
Install AnyHook (moved) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "anyhook-api-key",
"description": "ANYHOOK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "anyhook-api-base",
"description": "ANYHOOK_API_BASE",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"anyhook-mcp"
],
"env": {
"ANYHOOK_API_KEY": "${input:anyhook-api-key}",
"ANYHOOK_API_BASE": "${input:anyhook-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs