mcp for VS Code
io.speedvault/mcp
Run web performance audits, get code-level fixes, crawl for SEO, and read real-user Core Web Vitals.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "speedvault-api-key",
"description": "SPEEDVAULT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "speedvault-api-url",
"description": "SPEEDVAULT_API_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@speedvault/mcp"
],
"env": {
"SPEEDVAULT_API_KEY": "${input:speedvault-api-key}",
"SPEEDVAULT_API_URL": "${input:speedvault-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