brawsr for VS Code
io.github.brawsr/brawsr
Browser sessions, checkpoints, rewind, fork, lineage, and lifecycle tools for brawsr.
client:VS Code
transport:stdio
runtime:npm
Install brawsr in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "brawsr-api-key",
"description": "BRAWSR_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "brawsr-base-url",
"description": "BRAWSR_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "brawsr-mcp-timeout-ms",
"description": "BRAWSR_MCP_TIMEOUT_MS",
"password": true
}
],
"servers": {
"brawsr": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@brawsr/mcp-server"
],
"env": {
"BRAWSR_API_KEY": "${input:brawsr-api-key}",
"BRAWSR_BASE_URL": "${input:brawsr-base-url}",
"BRAWSR_MCP_TIMEOUT_MS": "${input:brawsr-mcp-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