B4n1Web is an ultra-lightweight agentic browser engine (6MB) for AI agents. It provides three browsing modes: Light (HTTP fetch + HTML parsing), JS (JavaScript extraction), and Render (full headless browser with Chromium).
Perfect for web scraping, data extraction, E2E testing, and autonomous AI agents that need to navigate and extract content from websites without the overhead of a full browser.
Features:
- Ultra-lightweight binary (6MB)
- Python SDK available on PyPI
- MCP server for integration with Claude, Cursor, OpenCode, Windsurf, Antigravity
- SQLite-based SecurityShield for safe browsing
- Multiple modes: Light, JS, Render
MCP Server:
Command: b4n1web mcp -p 8080
Port is configurable — change 8080 to any available port
Tools: goto (navigate & extract content), get_links (extract all links from current page)
Server Config
{
"mcpServers": {
"b4n1web": {
"command": "b4n1web",
"args": [
"mcp",
"-p",
"8080"
]
}
}
}