Technical Intelligence

How to See Your Lighthouse Agentic Browsing Score (It’s Not in PageSpeed Insights)

calendar_today Date: 2026.05.30
person Author: Jim Hunt
monitoring Intelligence: AI Search Optimization
Brutalist diagram: PageSpeed Insights X not shown, Chrome DevTools X reverted, Command Line check 4/4 npx lighthouse. The CLI is the only place it lives.

Chrome added an “Agentic Browsing” score to Lighthouse. You went to check yours, opened PageSpeed Insights or Chrome DevTools, and it was not there.

You are not missing a setting. The score genuinely does not appear in the two tools most people use. Every guide currently telling you to “open PageSpeed Insights and check the Agentic Browsing category” is wrong.

I went down this hole on my own site, traced it through the Lighthouse source code, and got gridlok.co from a 2/2 to a 4/4. Here is exactly how to see your score, why it is hidden where it is, and how the number is actually calculated.

Key Takeaways

  • The Agentic Browsing category shipped in Lighthouse 13.3.0 (May 7, 2026), but only in the command-line engine. It is not in PageSpeed Insights, and the Chrome DevTools integration was reverted twice the same week (PRs #17003 and #17004).
  • The only way to see the score today is the Lighthouse CLI: npx lighthouse@latest YOUR-URL --view.
  • The score is a pass ratio (passed over applicable), not a 0-100 score. Not-applicable and informative audits drop out of the denominator, which is why you might see 2/2, 3/3, or 4/4.
  • The two WebMCP audits that count only become applicable on Chrome 149+ (or Canary) with WebMCP flags enabled. On a normal stable Chrome they are N/A, so a stable run caps at 3/3.
  • llms.txt and the accessibility and layout audits are fully in your control on any browser. WebMCP requires both a registered tool on your site and a WebMCP-capable browser to run the audit.
agentic browsing score convertcompress

Why It’s Not in PageSpeed Insights or DevTools

The category exists. It just is not where the guides say it is. The reason is in the Lighthouse release history, which is public.

The Agentic Browsing category was added to the Lighthouse default config on May 6, 2026 (PR #17002) and shipped in version 13.3.0 the next day. The default config is what the command-line tool uses, so the CLI got it immediately.

A separate PR (#16998) wired the category into the Chrome DevTools Lighthouse panel. It was reverted twice: PR #17003 on May 6 and PR #17004 on May 7. As of now, that revert still stands. There is no re-land in the repository.

PageSpeed Insights runs its own hosted Lighthouse version on its own schedule, and its interface has to be updated separately to render a new category. It has not been. So PageSpeed Insights does not show Agentic Browsing either.

The audit lives in the command-line engine. The two surfaces most practitioners actually use, DevTools and PageSpeed Insights, do not show it. The guides telling you to check there were written from the announcement, not from running it.

What You Actually Need

Two things, depending on how far you want to go.

  • For the accessibility, layout, and llms.txt audits (up to 3/3): any recent Chrome and Node.js installed. The Lighthouse CLI runs through npx, no install required.
  • For the WebMCP audits (the full 4/4): Chrome 149+ or Chrome Canary, because WebMCP is gated behind chrome://flags/#enable-webmcp-testing and does not exist in earlier builds. My stable Chrome was 148 and could not see the WebMCP audits at all.

Check your Chrome version at chrome://version. If it is below 149 and you want the WebMCP audits, install Chrome Canary. It runs side by side with your normal Chrome and does not touch your main profile.

The Exact Command

Copy, paste, run. The first command works on any Chrome and gets you the three browser-independent audits. The second points Lighthouse at Canary with WebMCP enabled for the full score.

Run the Agentic Browsing Audit
Swap YOUR-URL for your site · needs Node.js + Chrome

1. Any Chrome (up to 3/3)

npx lighthouse@latest https://YOUR-URL --view --preset=desktop

2. Chrome Canary + WebMCP (the full 4/4) — PowerShell on Windows

$env:CHROME_PATH = "$env:LOCALAPPDATA\Google\Chrome SxS\Application\chrome.exe"
npx lighthouse@latest https://YOUR-URL --view --preset=desktop `
  --chrome-flags="--enable-features=WebMCPTesting,WebMCP --enable-blink-features=WebMCPTesting"

macOS/Linux: replace the first line with export CHROME_PATH="/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary" and put the flags on one line. --view opens the report automatically when the run finishes.

The CHROME_PATH line is the whole trick for the full score. It tells Lighthouse to use Canary instead of your default Chrome. Without it, the CLI grabs your stable build and the WebMCP audits stay N/A.

How the Score Is Actually Calculated

The fractional score confuses people. It is not “out of 4.” It is passed over applicable.

The category has six audits. An audit only counts toward your ratio if it is both scored (pass or fail) and applicable to your page. Two kinds of audits drop out of the denominator entirely:

  • Not Applicable (N/A): the audit cannot run. WebMCP audits are N/A on a browser without WebMCP. The llms.txt audit is N/A if the file returns a 404.
  • Informative: the audit reports information but is never scored. webmcp-registered-tools is informative. It lists your tools but does not move the ratio.

So the denominator changes based on your site and your browser. That is why a content blog on stable Chrome shows 2/2 or 3/3 while a site with WebMCP, audited on Canary, shows 4/4. Both are “100% of what applies.” The bigger number just means more audits were applicable.

Brutalist breakdown of the six Lighthouse Agentic Browsing audits showing which count toward the score: agent accessibility tree (binary, counts), cumulative layout shift (numeric, counts), llms.txt (binary, counts), webmcp schema validity (binary, counts), webmcp registered tools (informative, does not count), webmcp form coverage (often N/A), with a note that the score is passed over applicable

The Six Audits and How to Pass Each

AuditCounts?How to pass
agent-accessibility-treeYesSemantic HTML, valid ARIA, programmatic names on interactive elements. Same work as a good accessibility score.
cumulative-layout-shiftYesKeep CLS under 0.1. Reserve space for images, ads, and embeds. Already a Core Web Vital.
llms-txtYesServe /llms.txt at HTTP 200 with markdown containing at least one H1, at least one link, and 50+ characters.
webmcp-schema-validityYesRegister a WebMCP tool with a valid JSON Schema inputSchema. Needs a WebMCP browser to evaluate.
webmcp-registered-toolsNo (informative)Register tools via document.modelContext.registerTool. Lists them but does not score.
webmcp-form-coverageOften N/AExpose forms as declarative WebMCP tools. Stays N/A if no forms are annotated.

The llms.txt audit logic is worth knowing precisely, because the source code is stricter than “just have a file.” It fails on a server error, returns N/A on a 404, and only passes a 200 if the content has an H1 header, contains a link, and is at least 50 characters long.

The WebMCP tool registration uses the imperative API. A minimal valid tool looks like this:

document.modelContext.registerTool({
  name: "search_articles",
  description: "Search articles by keyword.",
  inputSchema: {
    type: "object",
    properties: { query: { type: "string" } },
    required: ["query"]
  },
  async execute({ query }) {
    return { content: [{ type: "text", text: "Results for " + query }] };
  }
});

Guard it with a feature check (if (document.modelContext) { ... }) so it is a harmless no-op on browsers without WebMCP, which is every browser most of your visitors use today.

My Real Results: 2/2 to 4/4

I ran this on gridlok.co and watched the number move as I changed things. The progression makes the scoring concrete.

  1. 2/2 (starting point, stable Chrome). Passing the accessibility tree and layout audits. No llms.txt, so that was N/A. No WebMCP browser, so all three WebMCP audits were N/A. Two applicable, two passing.
  2. 3/3 (after adding llms.txt). I added a real llms.txt at the domain root with an H1, a summary, and links to key pages. The audit flipped from N/A to passing. Three applicable, three passing.
  3. 4/4 (after registering WebMCP tools, run on Canary). I registered two tools with valid schemas and re-ran the audit on Chrome Canary with the WebMCP flags. The schema-validity audit became applicable and passed, the registered-tools audit detected both tools, and the score hit 4/4.

The jump from 2/2 to 3/3 took ten minutes and works for everyone. The jump to 4/4 needed a WebMCP-capable browser to even register the audits, which is the part no current guide mentions.

Should You Even Chase 4/4?

Honest answer: the 4/4 is partly a property of the browser you tested with, not just your site. On a normal visitor’s stable Chrome, the WebMCP audits do not even apply, so your real-world “score” is the 3/3.

The whole category is also still labeled experimental in Google’s documentation, and the DevTools team reverted its own integration twice. This is not a settled ranking signal. It is a data-gathering tool for an emerging standard.

What I would actually do: get the 3/3, because those audits (accessibility, layout, a clean llms.txt) are cheap and useful regardless. Add WebMCP tools only if your site has real actions worth exposing to an agent. Skip the performative 4/4 chase unless you want the screenshot. I went to 4/4 to document the process, not because it changes anything for visitors today.

I made the broader version of that argument in AEO Is Just SEO With New Acronyms: most “agentic readiness” is existing web hygiene with a new label.

FAQ

Why can’t I see Agentic Browsing in PageSpeed Insights?
Because PageSpeed Insights does not render the category yet. The Agentic Browsing category shipped in the Lighthouse command-line engine in version 13.3.0 (May 7, 2026), but PageSpeed Insights runs its own hosted Lighthouse version and needs a separate interface update to display a new category. As of now it has not been updated. Use the Lighthouse CLI instead: npx lighthouse@latest YOUR-URL --view.
It’s not in Chrome DevTools either. Why?
The DevTools integration was reverted. A pull request (#16998) added the Agentic Browsing config to the DevTools entry, then it was reverted twice (#17003 on May 6 and #17004 on May 7, 2026), and there has been no re-land since. So the category does not appear in the Chrome DevTools Lighthouse panel, even on Canary. The command line is the only place it currently shows.
Why are my WebMCP audits showing Not Applicable?
Because the browser running the audit does not expose WebMCP. The gatherer checks whether navigator.modelContext exists, which only happens on Chrome 149+ (or Canary) with WebMCP flags enabled. On a normal stable Chrome the API is undefined, so all three WebMCP audits return N/A. Point Lighthouse at Canary with --chrome-flags="--enable-features=WebMCPTesting,WebMCP --enable-blink-features=WebMCPTesting" to make them applicable.
Does the Agentic Browsing score affect my Google rankings?
No. It is an experimental Lighthouse category that measures readiness for browser-based AI agents, not a Google Search ranking signal. Google’s own documentation labels it experimental, and the DevTools team reverted its integration. Treat it as a useful checklist for agent-readiness, not a ranking lever. The accessibility and layout audits it includes do matter for users and for traditional SEO, but that is true independent of this category.

Sources & References

  1. Chrome for Developers. “Lighthouse agentic browsing scoring.” 2026. developer.chrome.com
  2. Chrome for Developers. “llms.txt | Lighthouse.” 2026. developer.chrome.com
  3. Chrome for Developers. “WebMCP.” 2026. developer.chrome.com
  4. GoogleChrome/lighthouse. PR #17002 “add agentic browsing category to default config”; PRs #17003 and #17004 reverting the DevTools integration; v13.3.0 release (May 7, 2026). github.com
  5. WebMachineLearning. “WebMCP explainer.” github.com
  6. llms.txt specification. llmstxt.org
  7. Hunt, Jim. “AEO Is Just SEO With New Acronyms.” Gridlok, May 2026. gridlok.co
Free Chrome Extension

See what ChatGPT is really searching

SubSeed captures the hidden Google queries ChatGPT runs behind every answer and enriches them with search volume, CPC, and keyword difficulty.

Try SubSeed Free

Share Technical Insight

Help scale the signal across your technical network

One Click, More Gridlok

Make Gridlok a Preferred Source on Google

See Gridlok surfaced more often in your Top Stories, AI Overviews, and AI Mode. One click, applied across Google Search.

Add as Preferred Source
Article Reference: 352
Return to Blog close