chamber for VS Code
io.github.abm9111/chamber
Cited Q&A over your own notes, plus drift detection when a cited source changes. Local-first CLI.
client:VS Code
transport:stdio
runtime:npm
Install chamber in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "chamber-python",
"description": "CHAMBER_PYTHON",
"password": true
},
{
"type": "promptString",
"id": "chamber-api-key",
"description": "CHAMBER_API_KEY",
"password": true
}
],
"servers": {
"chamber": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@bu7umaid/chamber"
],
"env": {
"CHAMBER_PYTHON": "${input:chamber-python}",
"CHAMBER_API_KEY": "${input:chamber-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