Sessions on demand
The agent spawns a fresh browser per task. Real IP, fresh fingerprint, scoped reach.
Point your agent at the Legba MCP server. It spawns a real Chromium browser on a fresh residential IP, does the work, and burns on close. Spawn a session, navigate, extract. No orchestration code.
This is Legba the disposable browser, not the open-source legba brute-force tool.
The server exposes session creation, navigation, and extraction as MCP tools. Your agent calls them like any other tool. One config block, no orchestration code, no headless rig to maintain.
The agent spawns a fresh browser per task. Real IP, fresh fingerprint, scoped reach.
Navigate, click, type, and submit. The session runs a real page, not a scraper.
Pull text, links, or a scoped selection. Then destroy the session and leave no trail.
Paste the snippet into your client config. Swap in your API key and restart the client. The same npx -y legba-browser-mcp command runs everywhere.
{
"mcpServers": {
"legba": {
"command": "npx",
"args": ["-y", "legba-browser-mcp"],
"env": {
"LEGBA_API_KEY": "lgb_your_api_key"
}
}
}
}{
"mcpServers": {
"legba": {
"command": "npx",
"args": ["-y", "legba-browser-mcp"],
"env": {
"LEGBA_API_KEY": "lgb_your_api_key"
}
}
}
}{
"mcpServers": {
"legba": {
"command": "npx",
"args": ["-y", "legba-browser-mcp"],
"env": {
"LEGBA_API_KEY": "lgb_your_api_key"
}
}
}
}{
"mcpServers": {
"legba": {
"command": "npx",
"args": ["-y", "legba-browser-mcp"],
"env": {
"LEGBA_API_KEY": "lgb_your_api_key"
}
}
}
}Get your API key from the dashboard. Keep it in the env block, not in source control.
The server exposes the session lifecycle as a small set of tools. Spawn one, drive it, read it, destroy it.
session.spawn(region?, ttl?)Boot a fresh browser. Real residential IP, fresh fingerprint. Returns a session id.
navigate(session, url)Drive the session to a URL. The page loads in a real Chromium tab.
extract(session, selector?)Read the rendered page. Get text, links, or a scoped selection back.
act(session, instruction)Click, type, and submit. The agent describes the step in plain words.
screenshot(session)Capture the live viewport. Returns an image of what the session sees.
session.destroy(session)Burn it. Cookies, storage, tokens, and fingerprint go with it.
Legba is a disposable real browser: it spawns a clean session, does the work, and destroys itself on close.
chromium / real fingerprint · residential ip · burn on close
Real browser. Real IP. Real page. Spawn a session. Do the work. Destroy it. Off your device. Off your stack. Gone on close.