WebMCP: Make Your Website Agent-Ready in Chrome 149 Google's WebMCP, now in public Origin Trial in Chrome 149, lets developers expose structured tools to in-browser AI agents, reducing token usage by 90% compared to screenshot-based automation. The open web standard, co-developed with Microsoft and incubated in the W3C, provides declarative and imperative APIs for agent-ready websites. Early adopters include Expedia, Booking.com, and Shopify. AI agents are already visiting your website. They’re doing it by taking screenshots, parsing walls of nested DOM nodes, and making expensive guesses about your UI. It’s slow, brittle, and breaks every time you ship a redesign. Google’s WebMCP — now in public Origin Trial in Chrome 149 — gives developers a clean exit from that mess. Early adopters report a 90% drop in token usage compared to screenshot-based automation. That number alone is worth paying attention to. What WebMCP Actually Is WebMCP is a proposed open web standard that lets developers expose structured tools — JavaScript functions and annotated HTML forms — directly to in-browser AI agents. Instead of an agent squinting at your DOM and guessing what your “Add to Cart” button does, it calls a named function with a typed schema and gets a structured response. Google announced it at I/O 2026, and it’s co-developed with Microsoft and incubated in the W3C Web Machine Learning Community Group. This isn’t a weekend experiment. It’s on a real standardization track. Current status: Chrome 149 Origin Trial is open for registration. Microsoft Edge 147 ships it natively. Firefox and Safari have not committed. Keep that in mind. Two APIs, One Minimum-Viable Entry Point WebMCP gives developers two implementation paths. Start with the declarative API if you want the lowest possible lift. Declarative API: Three HTML Attributes Annotate an existing HTML form with toolname , tooldescription , and optionally toolautosubmit . The browser auto-generates the JSON Schema from your existing inputs. No JavaScript changes required.