mcp for VS Code
com.sitecurl/mcp
Run website audits and track site health scores, findings, and regressions from any MCP client.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sitecurl-api-key",
"description": "SITECURL_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "sitecurl-api-url",
"description": "SITECURL_API_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@sitecurl/mcp"
],
"env": {
"SITECURL_API_KEY": "${input:sitecurl-api-key}",
"SITECURL_API_URL": "${input:sitecurl-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs