spikes for VS Code
io.github.bierlingm/spikes
UI feedback for AI-assisted building. Click elements, rate them, agents triage via MCP.
client:VS Code
transport:stdio
runtime:npm
Install spikes in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "spikes-token",
"description": "SPIKES_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "spikes-api-url",
"description": "SPIKES_API_URL",
"password": true
}
],
"servers": {
"spikes": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"spikes-mcp"
],
"env": {
"SPIKES_TOKEN": "${input:spikes-token}",
"SPIKES_API_URL": "${input:spikes-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