DLBrowser for VS Code
io.github.dekryptlabs/dlbrowser
Self-healing web access for AI agents — recovers through bot blocks, captchas and JS pages.
client:VS Code
transport:stdio
runtime:pypi
Install DLBrowser in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "dlbrowser-api-key",
"description": "DLBROWSER_API_KEY",
"password": true
}
],
"servers": {
"dlbrowser": {
"type": "stdio",
"command": "uvx",
"args": [
"dlbrowser"
],
"env": {
"DLBROWSER_API_KEY": "${input:dlbrowser-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