Stravue for VS Code
com.stravue/mcp
Competitor research for AI agents: real competitor pages, side by side on one slide and deck.
client:VS Code
transport:stdio
runtime:npm
Install Stravue in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "stravue-api-key",
"description": "STRAVUE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "stravue-base-url",
"description": "STRAVUE_BASE_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@stravue/mcp"
],
"env": {
"STRAVUE_API_KEY": "${input:stravue-api-key}",
"STRAVUE_BASE_URL": "${input:stravue-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