Cloudflare Kitesurf: A Browser Built for AI Agents
Published August 10, 2026
Cloudflare is building Kitesurf, a browser designed not for humans but from the ground up for AI agents. Instead of tabs, extensions and smooth scrolling, the focus is on low resource consumption, scalability and automated web access.
The rationale is straightforward: AI agents increasingly need a browser to open web pages, extract content, fill forms or take screenshots. Traditional browser engines like Chromium bring a lot of overhead that an AI agent often does not need.
Far less RAM and CPU than Chromium
Kitesurf runs on Cloudflare Workers in isolated V8 environments and is built with Rust and WebAssembly among other technologies.
Cloudflare's own benchmarks are notable: taking a screenshot required roughly 58 MiB of memory with Kitesurf, compared to about 271 MiB for Chromium. For HTML extraction, the figures were around 39 MiB versus 274 MiB. CPU consumption was also significantly lower — Cloudflare reports a roughly 3- to 7-fold reduction in resource usage depending on the task.
There is a trade-off: in raw execution speed, Chromium is still faster. Kitesurf took about 1.7–1.8 times longer for screenshots and HTML extraction. But for AI systems, the lower resource footprint may matter more — when hundreds or thousands of browser sessions run simultaneously, RAM and CPU costs add up quickly.
Not for humans, but for agents
Cloudflare describes Kitesurf as a short-lived, isolated browser engine that exists only as long as a specific task requires it. The session then disappears.
This fits agents that extract web content, generate screenshots or PDFs, inspect DOM elements or perform automated web tasks. Kitesurf supports the Chrome DevTools Protocol (CDP), so existing tools like Puppeteer and Playwright can work with the new engine.
Not yet a full Chromium replacement
Kitesurf is still in an early stage. Cloudflare names video, WebGL, complex bot challenges and long-running authenticated sessions as areas where Chromium remains the better choice.
Development is already far along, though: according to Cloudflare, Kitesurf passes more than 215,000 Web Platform Tests and can render numerous well-known websites. It is currently available to try for free during the beta within Cloudflare Browser Run, with plans to make the project open source in the long term.
Cloudflare's approach is an interesting one: instead of giving AI agents ever more powerful versions of a traditional browser, Kitesurf is the first browser whose architecture is explicitly designed for the needs of autonomous software.