CloudFlare Previews Automatic WebMCP Support for Web Pages Cloudflare announced a developer preview that lets any website enable a WebMCP (Web Model Context Protocol) interface with a single dashboard switch, allowing browser-based AI agents to interact with unmodified web pages through structured tools. The preview includes two tool packs: Content Credentials for reading C2PA metadata and Site MCP server for proxying MCP tools. The feature is available in Chrome 145+ and can be enabled via Agent Readiness > Labs in the Cloudflare Dashboard. Cloudflare announced a developer preview that lets any website enable a WebMCP https://blog.cloudflare.com/webmcp/ Web Model Context Protocol interface with a single dashboard switch. This allows browser-based AI agents to interact with unmodified web pages through structured tools instead of scraping or guessing, keeping human traffic and control on the original site. The core idea behind WebMCP is exposing structured, machine-readable tools directly to AI agents through a standard protocol. This allows them to call explicit functions like searchFlights or bookTicket without resorting to scraping and parsing HTML, which consumes tokens, or clicking UI buttons to trigger behavior. WebMCP makes interactions faster, more efficient, and far less fragile than traditional browser automation, which often breaks when the UI changes. To adopt WebMCP, a website must expose its functionality as tools using either the document.modelContext API https://developer.chrome.com/docs/ai/webmcp/imperative-api , which allows developers to register tools, define their schemas, and write the code that implements them, or a declarative JavaScript API https://developer.chrome.com/docs/ai/webmcp/declarative-api that allows to add annotations to a standard HTML forms to create a WebMCP tool. What CloudFlare's current preview is aiming at is giving any site on Cloudflare the possibility to support WebMCP with a single switch by selecting tool packs from a pre-defined library. CloudFlare is currently including two tool packs in this preview: Content Credentials to allow agents to read C2PA content-provenance metadata from images on the page, and Site MCP server, which can proxy a site's MCP server tools to the in-browser agent. CloudFlare says the tool pack library will grow and that when new packs become available, a site can enable them without redeploying. CloudFlare's implementation is built around a bridge.js module, which is silently injected into a served webpage using HTMLRewriter: < -- Cloudflare injects this at the edge. Same origin, and your HTML is otherwise untouched. --