Compete Competitive Intelligence for VS Code
io.github.niyonzimabryan/compete
Typed access to monitored competitive changes, evidence, dossiers, research, and collection health.
client:VS Code
transport:stdio
runtime:npm
Install Compete Competitive Intelligence in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "compete-api-key",
"description": "COMPETE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "compete-url",
"description": "COMPETE_URL",
"password": true
},
{
"type": "promptString",
"id": "compete-repo",
"description": "COMPETE_REPO",
"password": true
},
{
"type": "promptString",
"id": "compete-timeout-ms",
"description": "COMPETE_TIMEOUT_MS",
"password": true
}
],
"servers": {
"compete": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"compete-mcp"
],
"env": {
"COMPETE_API_KEY": "${input:compete-api-key}",
"COMPETE_URL": "${input:compete-url}",
"COMPETE_REPO": "${input:compete-repo}",
"COMPETE_TIMEOUT_MS": "${input:compete-timeout-ms}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs