Website Auditor for VS Code
io.github.spikeycoder/website-auditor-mcp
AI visibility + site audits: see if ChatGPT, Perplexity, Claude & Gemini recommend a website.
client:VS Code
transport:stdio
runtime:npm
Install Website Auditor in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wa-api-key",
"description": "WA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "wa-api-base-url",
"description": "WA_API_BASE_URL",
"password": true
}
],
"servers": {
"website-auditor-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"website-auditor-mcp"
],
"env": {
"WA_API_KEY": "${input:wa-api-key}",
"WA_API_BASE_URL": "${input:wa-api-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs