mcp session bridge for VS Code
io.github.t3ratech/mcp-session-bridge
Drive a browser you are already signed into, through the free T3rnel Browser extension.
client:VS Code
transport:stdio
runtime:npm
Install mcp session bridge in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "t3rnel-session-mode",
"description": "T3RNEL_SESSION_MODE",
"password": true
},
{
"type": "promptString",
"id": "t3rnel-session-headless",
"description": "T3RNEL_SESSION_HEADLESS",
"password": true
},
{
"type": "promptString",
"id": "t3rnel-session-timeout-ms",
"description": "T3RNEL_SESSION_TIMEOUT_MS",
"password": true
}
],
"servers": {
"mcp-session-bridge": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@t3ratech/mcp-session-bridge"
],
"env": {
"T3RNEL_SESSION_MODE": "${input:t3rnel-session-mode}",
"T3RNEL_SESSION_HEADLESS": "${input:t3rnel-session-headless}",
"T3RNEL_SESSION_TIMEOUT_MS": "${input:t3rnel-session-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