PageSpeed Insights Agentic Browsing: The New AI Readiness Audits Explained
What Changed in PageSpeed Insights
PageSpeed Insights and Lighthouse now expose an Agentic Browsing category. This is not another normal performance score. It is a set of checks that asks a different question: can an AI agent understand, navigate and potentially interact with this page reliably?
The category is still experimental, and Chrome's documentation is clear that Agentic Browsing and WebMCP support are based on proposed standards. That matters. This is not a reason for every business to panic-build an agent interface this week. It is a signal that Google and Chrome are testing how websites expose cleaner machine-readable navigation, actions and context.
Most websites should care about the first three checks now: a sound accessibility tree, stable layout, and an llms.txt file that follows recommendations. The WebMCP checks are different. For most normal content, lead-gen and ecommerce sites, they will show as not applicable until the site deliberately exposes tools or forms for AI agents.
The Three Audits Most Websites Should Have
We can see in our hero image three passed audits that most well-built websites should be able to satisfy. They are not exotic AI features. They are practical foundations for a page that machines can interpret without guessing.
| Audit | What It Means | Why It Matters |
|---|---|---|
| Accessibility tree is well-formed | The page exposes a valid machine-readable accessibility structure | Agents often use the accessibility tree as their view of the page |
| Cumulative Layout Shift is 0 | Visible elements do not unexpectedly move during load | Agents need stable targets if they are identifying or interacting with elements |
llms.txt follows recommendations |
The site provides a machine-readable guide to important content | AI systems can find and understand your preferred resources more easily |
These are sensible checks because they overlap with good technical SEO. A valid accessibility tree helps assistive technology, automated testing, browsers and agents. A stable page helps users and supports CLS optimisation. A clean llms.txt file supports the AI-crawler guidance covered in our LLMS.txt guide.
Why Accessibility Is Now an Agentic Browsing Signal
This is the part many SEOs will underestimate. Accessibility is not only about compliance or screen readers. It is also one of the cleanest machine-readable representations of a page. If buttons do not have names, forms are not labelled, headings are messy, and roles are invalid, an agent has a weaker model of the interface.
For agentic browsing, the accessibility tree can describe:
- What controls exist on the page.
- What each button, link, input or form is called.
- How elements relate to each other.
- Whether content is visible, hidden or interactive.
- Whether the page structure is logical enough to navigate.
The practical fix is not to add ARIA everywhere. Use semantic HTML first, label forms properly, keep heading structure clean, and avoid building clickable elements that are invisible to the accessibility tree. The data has to match the page. If a human can see a checkout button but the machine-readable interface cannot identify it, the page is not agent-ready.
Why CLS Appears in an Agentic Browsing Audit
CLS might look like a Core Web Vitals metric that has been dropped into an AI audit by accident. It has not. Layout stability matters for agents because movement changes the relationship between what the agent identified and what it may try to interact with.
If a page shifts after an agent has identified a button, link, product tile or form field, the interaction can become unreliable. The same problem affects humans when they tap the wrong target after a layout jump. Agentic browsing makes the reliability issue more obvious.
The fix is the same as normal CLS work: reserve space for images, ads, embeds, banners and dynamic modules. Do not inject content above the viewport without intent. Keep headers, forms and product grids stable. If render-blocking CSS or late styles are part of the issue, connect this with the Critical CSS and Core Web Vitals guide.
Presence is not the same as accuracy. Passing the CLS check on one URL does not prove every template is stable. Use the wider Core Web Vitals testing workflow before calling the site clean.
Why llms.txt Is Part of the Same Story
The llms.txt check is the clearest bridge between classic technical SEO and AI readiness. A normal XML sitemap tells search engines which URLs exist. An llms.txt file is more selective. It can point AI systems towards the pages, guides, documentation and resources you most want them to understand.
For Agentic Browsing, that matters because agents need clean discovery paths. They should not have to infer your best content from navigation, pagination, JavaScript widgets and internal search pages. A well-written llms.txt file gives them a curated starting point.
A useful file should:
- Live at
/llms.txt. - Use clear Markdown formatting.
- Group important resources by topic.
- Link to evergreen, high-value pages rather than every URL.
- Include short descriptions that explain what each resource is for.
- Stay updated as content clusters change.
This also connects with our earlier post on Google's Lighthouse llms.txt audit and the broader GEO strategy guide.
The Three WebMCP Audits Most Websites Do Not Have Yet
The not applicable audits shows three WebMCP checks listed as not applicable:
| WebMCP Audit | What It Checks | Why Most Sites See Not Applicable |
|---|---|---|
| WebMCP form coverage | Whether forms are exposed declaratively for agents | Most sites have normal HTML forms, not WebMCP-enabled forms |
| WebMCP tools registered | Whether the page registers agent-callable tools | Most sites do not expose actions such as booking, adding to cart or submitting requests as tools |
| WebMCP schemas are valid | Whether registered tools have valid schemas | If no WebMCP tools exist, there is no schema to validate |
This is not a failure for most websites. It means the page is not currently exposing WebMCP functionality. That is expected for a standard blog post, service page, brochure site or simple ecommerce page.
WebMCP becomes relevant when a website wants AI agents to do more than read. It is about exposing actions in a structured way, such as book_appointment, add_to_cart, request_quote, find_product, check_availability or submit_support_ticket. The registered tool needs a clear name, a description and a schema that tells the agent what inputs are required.
What WebMCP Means in Plain English
WebMCP is Chrome's proposed web-facing version of the Model Context Protocol idea: a way for websites to expose tools and actions that AI agents can discover and use. Instead of an agent guessing how a form works from the visual page, the site can declare the action more explicitly.
A normal user sees a form. An agent needs to know more:
- What is this form for?
- Which fields are required?
- What data types are expected?
- What happens when the form is submitted?
- Should the agent use this form for booking, buying, searching, support or something else?
WebMCP tries to make that contract clearer. Chrome's docs describe both declarative tools, where attributes are added directly to forms, and imperative tools, where JavaScript registers tools through document.modelContext.registerTool.
The important point is scope. WebMCP is not needed just because a page has content. It becomes relevant when a site wants controlled agent interaction. That might matter for travel booking, appointment systems, ecommerce checkout, SaaS workflows, calculators, comparison tools, customer support flows and any interface where an agent may complete a task for a user.
When Should You Actually Care About WebMCP?
Most businesses should not start with WebMCP. Start with the three checks that already matter: accessibility, layout stability and llms.txt. Then consider WebMCP if the site has actions that could realistically be delegated to an AI agent.
Use this decision table:
| Website Type | WebMCP Priority | Reason |
|---|---|---|
| Blog or publisher | Low | Agents mainly need to read, cite and navigate content |
| Local service website | Medium later | Quote requests, appointments and contact forms could become agent actions |
| Ecommerce site | Medium to high later | Product search, basket actions and availability checks are obvious agent use cases |
| SaaS app | High for selected workflows | Agents may need controlled access to tasks, reports or account actions |
| Booking platform | High | Booking, availability and cancellation flows are agent-suitable |
| Support portal | High | Ticket creation, status checks and knowledge-base lookup can be tool-like actions |
The sensible route is staged. Make the site readable first. Make the interface stable second. Make important content discoverable through llms.txt and structured data third. Then decide whether any forms or tools should be exposed through WebMCP. For the wider strategic context, read our Agentic SEO guide.
How to Audit Your Site Now
Treat the Agentic Browsing category as an early warning panel, not a final ranking score. Chrome's documentation says it is experimental and does not use the same weighted 0-100 scoring model as other Lighthouse categories. The report gives a pass ratio, pass/fail states and informational signals.
Use this workflow:
- Run PageSpeed Insights or Lighthouse on representative templates, not only the homepage.
- Check whether the accessibility tree audit passes.
- Check CLS in the Agentic Browsing section and in the normal Core Web Vitals workflow.
- Confirm
/llms.txtexists and follows recommendations. - If WebMCP audits show not applicable, decide whether that is expected.
- If you have agent-suitable forms or actions, review whether WebMCP is worth testing under the origin trial.
- Re-test after template, form, navigation or JavaScript changes.
Do not report this as we failed WebMCP if the result is not applicable. Report it as WebMCP not implemented because no agent-callable tools are currently exposed. That is a much more accurate interpretation.
Final Recommendation
The new Agentic Browsing audits are useful because they show where AI readiness is heading. The practical takeaway is not that every website needs WebMCP today. The practical takeaway is that machine-readable structure is becoming more visible in mainstream testing tools.
Most websites should focus on three things now: keep the accessibility tree clean, keep the page visually stable, and publish a useful llms.txt file. Those are real technical SEO foundations with benefits beyond AI agents.
WebMCP is the next layer. It becomes relevant when you want AI agents to interact with your site, not just read it. For now, if the three WebMCP audits are not applicable, that is usually fine. If your site depends on bookings, forms, support flows, product actions or account workflows, start learning what WebMCP means before it becomes a commercial requirement.
Related Reading
- LLMS.txt: The Treasure Map for AI
- Google Lighthouse llms.txt Audit and AI-Ready Structured Data
- Agentic SEO Guide
- Core Web Vitals Tools and Testing Workflow