fortress for VS Code
io.github.tiliondev/fortress
Stealth browser for AI agents: fetch pages behind Cloudflare/DataDome/CAPTCHA, extract clean data.
client:VS Code
transport:stdio
runtime:pypi
Install fortress in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tilion-mcp-prewarm",
"description": "TILION_MCP_PREWARM",
"password": true
},
{
"type": "promptString",
"id": "tilion-mcp-headless",
"description": "TILION_MCP_HEADLESS",
"password": true
},
{
"type": "promptString",
"id": "tilion-allow-private-egress",
"description": "TILION_ALLOW_PRIVATE_EGRESS",
"password": true
},
{
"type": "promptString",
"id": "tilion-base-url",
"description": "TILION_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "tilion-api-key",
"description": "TILION_API_KEY",
"password": true
}
],
"servers": {
"fortress": {
"type": "stdio",
"command": "uvx",
"args": [
"tilion"
],
"env": {
"TILION_MCP_PREWARM": "${input:tilion-mcp-prewarm}",
"TILION_MCP_HEADLESS": "${input:tilion-mcp-headless}",
"TILION_ALLOW_PRIVATE_EGRESS": "${input:tilion-allow-private-egress}",
"TILION_BASE_URL": "${input:tilion-base-url}",
"TILION_API_KEY": "${input:tilion-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