SAN FRANCISCO – The browser you are reading this in was built for you. Kitesurf was not.
Cloudflare on Thursday released a cloud-hosted browser built specifically for artificial intelligence agents, software programs that navigate the web on behalf of a user. The product, named Kitesurf and available free in beta through Cloudflare’s Browser Run platform, formalizes a division that has been building quietly for years: the web now has two separate audiences, humans and machines, and their browser requirements have diverged to the point where building for both in a single product no longer makes sense.
The timing is practical. Bot traffic now generates the majority of all web requests, with AI agents as the fastest-growing segment, per Cloudflare‘s own network data from last year. These programs book flights, research companies, fill forms, and extract data from websites without a human at the keyboard. They need browsers. They do not need the parts of browsers that make browsing pleasant for humans.
“Browser engines like Chromium were built for humans, not agents, and they come with overhead that AI models simply do not need,” Cloudflare wrote in its technical announcement Thursday. The company identifies the mismatch precisely: Chromium, the open-source engine that powers Chrome, Brave, Edge, and most of the commercial browser market, must render billions of pixels, manage tab synchronization, handle browser extensions, and maintain session state across devices. AI agents require none of that. What they care about, in Cloudflare’s phrasing, is “token count, context windows, scalability, performance, and costs.”
Kitesurf strips all of that out. What remains is a rendering engine assembled from open-source components: Mozilla’s CSS parser Stylo, a Rust implementation of ECMAScript called Boa, and a layout engine from Blitz. The stack runs inside Cloudflare’s serverless Workers infrastructure. Each instance is stateless. Once a task completes, nothing persists. A human browser keeps your history, your passwords, and your preferences. Kitesurf keeps nothing, because an AI agent has no use for any of that between sessions.
The efficiency gains in controlled testing are measurable. Across 14 test URLs, Kitesurf used 3.1 times less CPU for screenshot capture than a warm-pool Chromium instance and 3.8 times less for HTML extraction. Memory consumption fell 4.7 times lower for screenshots and 7.0 times for HTML extraction. For companies running hundreds of simultaneous AI agent sessions, those numbers translate directly into infrastructure costs. Cloudflare’s announcement notes that Chromium’s overhead currently “restricts large parts of the Web to only the most sophisticated and costly AI models,” positioning Kitesurf as a cost reduction tool for developers who cannot afford that overhead at scale.

Accessing Kitesurf requires minimal setup. Developers add a single parameter to their existing Browser Run requests. The platform supports three access methods: a CDP endpoint compatible with Puppeteer, Playwright, and MCP clients; a Quick Actions API for one-shot operations such as extracting content from a page or generating PDFs; and a public playground with Chrome DevTools integration for testing. The build passes more than 215,000 Web Platform Tests, with hundreds added weekly, and renders correctly on Wikipedia, Hacker News, and Cloudflare’s own dashboard.
The trade-off is real. In wall clock time, the actual elapsed time between sending a request and receiving a result, Kitesurf runs 1.7 to 1.8 times slower than Chromium with a warm instance pool. For a human watching a progress bar, that gap is noticeable. For an AI agent running in parallel with dozens of other requests, the relevant metric is cost per session rather than latency per session, and that is where Kitesurf wins.
Security is the dimension the launch materials address least completely. AI agents browsing the web face a threat humans largely do not: prompt injection, in which a malicious website embeds hidden instructions designed to be read by the language model and redirect its behavior. A browser that strips visual elements and hands raw text to an AI creates a more direct path for such attacks. Cloudflare identifies prompt injection and tool safety as top priorities in Kitesurf’s threat model but does not describe specific defenses in the announcement. That gap is worth tracking, because the agents most likely to use Kitesurf are the ones with access to credentials, forms, and financial systems.
Whether any major AI framework will formally adopt Kitesurf is the open question. Existing headless Chromium solutions, including Playwright and Puppeteer, already serve most of the same use cases. Kitesurf’s CDP compatibility, meaning it speaks the same protocol as those tools, lowers the switching cost. But compatibility is not adoption. Cloudflare has not announced a formal integration with OpenAI’s agent tools, Anthropic’s computer use feature, or LangChain.
Cloudflare’s strategic position here is worth noting. The company handles bot detection and traffic filtering for a substantial share of the web, sitting at the network layer between AI agents and the sites they visit. A browser product running on Cloudflare’s own infrastructure extends that presence from the network layer to the application layer. As the AI race accelerates into every layer of the internet, Cloudflare is quietly acquiring positions at each one. The beta is free. Pricing for general availability has not been announced.

