AI browser automation.

Undetectable stealth. Natural language. The CMDOP agent drives any website for you.

5 simple steps

Just tell it what to do.

No code. No selectors. Just words.

1
Log into my account and check order status
2
Find all products under $50 and save to CSV
3
Fill out this form with my saved info
4
Take a screenshot after each step

Or use the SDK.

Full programmatic control. Python, TypeScript, or any language via REST API.

Python
from cmdop import Browser

browser = Browser()
browser.goto("amazon.com")

# Natural language
browser.do("search for mechanical keyboard")
browser.do("sort by price low to high")

# Or precise control
products = browser.query_all(".product-card")
for product in products[:5]:
    print(product.text, product.price)
TypeScript
import { Browser } from '@cmdop/sdk'

const browser = new Browser()
await browser.goto('amazon.com')

// Natural language
await browser.do('search for mechanical keyboard')
await browser.do('sort by price low to high')

// Or precise control
const products = await browser.queryAll('.product-card')
for (const product of products.slice(0, 5)) {
  console.log(product.text, product.price)
}
Stealth mode included
Session persistence
Parallel execution
Webhook callbacks

Invisible by design.

Stealth mode is always on. Canvas, WebGL, audio fingerprints—all masked. Human-like mouse and typing. Anti-bot systems see a real user.

Questions.

Three layers of protection run automatically: browser launch flags, context scripts that remove automation traces, and per-page fingerprint masking for canvas, WebGL, and audio. You don't configure anything—it just works.

Anything a human can do in a browser: navigate, click, type, scroll, extract data, fill forms, upload files, take screenshots. 19 tools built-in, all controllable via natural language.

The stealth system masks all detectable fingerprints and simulates human-like behavior with natural mouse movements and typing patterns. Most anti-bot systems can't distinguish it from real users.

No. Just chat with the browser in plain English. Say "go to amazon and find the cheapest mechanical keyboard" and watch it happen. The AI figures out the clicks and inputs.

Yes. Browser profiles persist cookies, localStorage, and custom fingerprints. Switch between profiles or continue where you left off.