Hero Background
The unified platform for automation at scale.

BCTRL BETA

Runtime infrastructure for AI agents, with browsers, state, observability, and automation services built in.

Explore the platform →
For
Supercharge your
  • Agent Skills
  • agent-browser CLI
  • OpenClaw
  • Hermes Agent
  • Mastra

Browsers that don't get blocked.

Real fingerprints on real hardware, your pick of proxies, and CAPTCHAs solved in-runtime — so the sites you automate see a person, not a bot.

  • Real fingerprints Current, real-device browser fingerprints, refreshed as browsers update — not a patched headless build.
  • Real hardware Browsers run on a decentralized fleet of real computers — no datacenter ASN for anti-bot systems to flag.
  • Proxies Rotating or sticky, targeted by country or region. Save a config once, attach it per runtime.
  • Stealth tiers Three levels behind one config field. Run light by default, dial up to ultra on the sites that fight back.
  • Persistent identity Profiles carry cookies, storage, and logins across runs — you come back as a known returning user, not a fresh suspect.
  • CAPTCHA solving Detected and solved inside the runtime with human-like motion. No third-party service to wire up.

Three concepts run the whole platform.

Space, Runtime, and Run — learn these and you know BCTRL.

  1. 01 Space

    The shared control layer. Mount files, secrets, proxies, and AI config once, then coordinate many runtimes.

  2. 02 Runtime

    A remote environment you start, connect to, inspect, and stop. Today that environment is a browser.

  3. 03 Run

    The observable record of a runtime session: activity, artifacts, live view, recording, and usage.

Space files · vault · proxies · observability
browser runtime "scraper"
RUN #241 2.4s ✓ completed
RUN #242 ● running
connection
cdp
stealth
ultra
proxy
rotating · US-East
fingerprint
chrome · en-US
browser runtime "login"
RUN #87 ● running
connection
cdp
stealth
high
proxy
sticky · DE-Frankfurt
vault
2 credentials
2 active runs · vault mounted · proxy rotating
platform featuresvault.ts
import { Bctrl } from '@bctrl/sdk'
import { chromium } from 'playwright'

const bctrl = new Bctrl({ apiKey: process.env.BCTRL_API_KEY! })

// Mount a vault scope onto the space, then launch a runtime in it
const space = await bctrl.spaces.create({
  name: 'login-flow',
  environment: { vault: { allow: ['acme/'] } },
})
const runtime = await bctrl.spaces.runtimes.create(space.id, {
  type: 'browser',
  name: 'crm',
})

const { connectUrl } = await bctrl.runtimes.start(runtime.id)
const browser = await chromium.connectOverCDP(connectUrl)
const page = await browser.newPage()

// Credentials + a fresh TOTP, straight from the vault
const login = await bctrl.vault.value('acme/login')
await page.fill('#user', login.username)
await page.fill('#pass', login.password)
await page.fill('#otp', (await bctrl.vault.totp('acme/2fa')).code)
Where It Fits Explore the cookbook →
01 AI Agents

Publish BCTRL as skill instructions, a runtime API, or a CDP-backed browser target for the agent your users already run.

Agent Skillsagent-browser CLIOpenClaw
02 Agent Frameworks

Let frameworks and long-running agents control a managed browser while BCTRL keeps the run observable.

MastraHermes AgentStagehand
03 Your Product

Embed BCTRL as the runtime layer inside your product so users can watch, debug, and take over agent work.

Live iframeRun observabilitySubaccounts
Latest from the blogBrowse all posts →

Start building.