// DOCUMENTATION

Koko Documentation

Install the SDK, connect to Koko, and automate — CDP server, MCP agents, and TypeScript APIs.

Welcome to Koko Docs

Koko is a controlled browser runtime for AI-first automation. Install the SDK, launch or connect to a runtime, observe the browser journey, and export page data without compiling the engine for everyday use.

Quick start

$ npm install koko-sdk
# Launch and automate
import { Browser } from "koko-sdk";
const launched = await Browser.launch({ binary: "/path/to/koko" });
const page = await launched.browser.newPage();
await page.goto("https://example.com");