Site Spy for VS Code
io.github.vkuprin/site-spy
MCP server for Site Spy — lets AI agents monitor websites for changes
client:VS Code
transport:stdio
runtime:npm
Install Site Spy in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "site-spy-api-key",
"description": "SITE_SPY_API_KEY",
"password": true
}
],
"servers": {
"site-spy": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@site-spy/mcp-server"
],
"env": {
"SITE_SPY_API_KEY": "${input:site-spy-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