revibe mcp for VS Code
io.github.selvatuple/revibe-mcp
Analyze any codebase — get architecture, file roles, execution flows, and agent context.
client:VS Code
transport:stdio
runtime:npm
Install revibe mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "revibe-api-key",
"description": "REVIBE_API_KEY",
"password": true
}
],
"servers": {
"revibe-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"revibe-mcp"
],
"env": {
"REVIBE_API_KEY": "${input:revibe-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs