agentspeed.

netlify.com

scanned 7/26/2026, 1:40:32 AM · cached · refresh in 22h · rubric 2026.07.4
robots.txt present: passrobots.txt allows AI agents: passContent-Signal directives: passllms.txt present: passSitemap present: failLink response headers: warnCanonical URL: skipMCP server card: failOAuth authorization metadata: failOAuth resource metadata: failAPI catalog / OpenAPI: passWeb Bot Auth: failMarkdown negotiation: passText-to-markup ratio: failContent without JavaScript: skipHeading hierarchy: skipCookie wall blocks content: skipPage title: skipMeta description: skipJSON-LD present: passStructured data validates: warnSchema type coverage: failPaywall / login wall: skipAgent Skills manifest: failWebMCP actions: failPrimary action reachable: passReachability: passTime to first byte: passFull render time: skipPage weight: pass67/ 100 · D
Needs work

This is how AI agents (not browsers) experience netlify.com. The score weights five categories of machine-readability; the ticks on the arc are the 30 individual checks behind it.

✉ Email me this report + alert me when it changes ↓

Top fixes

Checks tagged “emerging” are 2026 agent-protocol standards most of the web hasn’t adopted yet — adopting early is an edge, not a defect.

failSitemap presentDiscoverability

No reachable sitemap.xml. Publish one and reference it in robots.txt.

Fix: Publish /sitemap.xml and reference it from robots.txt with a Sitemap: line.

failText-to-markup ratioReadability

Visible text is 2.2% of HTML weight (8957/413492 bytes). Low. Markup may be crowding out agent-usable text.

Fix: Heavy ad or navigation markup crowds out agent-usable text. Aim for a text-to-DOM ratio above 15%.

warnStructured data validatesStructured data

1 recommended-field warning(s). First: WebSite recommends "potentialAction" (improves agent comprehension). 1 block(s) skipped — type outside the set we check.

Fix: Validate your JSON-LD with Google Rich Results test. Fix missing required properties.

failSchema type coverageStructured data

Page looks like Article|BlogPosting|NewsArticle; missing JSON-LD type(s): Article|BlogPosting|NewsArticle.

Fix: Align JSON-LD type to page purpose. Product pages without Product markup are skipped by agent shopping flows.

warnLink response headersDiscoverability

A Link: header is present but carries none of canonical/alternate/describedby — the relations agents consume.

Fix: Emit `Link:` headers for canonical, alternate-language, and describedby relations. Agents that fetch HEAD-only or stream-render rely on these.

failMCP server cardemergingDiscoverability

No valid MCP Server Card at /.well-known/mcp/server-card.json. Publish one so agents can discover your tools without HTML scraping.

Fix: Publish an MCP Server Card describing the tools your site exposes. Agents discover capabilities via `/.well-known/mcp/server-card.json`. See modelcontextprotocol.io for the schema.

Don’t lose this report

Get it in your inbox now — and a heads-up whenever netlify.com’s agent-readiness score changes. Free, unsubscribe anytime.

Fix it

Generated, ready-to-ship files for the gaps above — copy them or download and drop them into your repo.

Reference a sitemap
Publish /sitemap.xml and add this line to robots.txt.
Sitemap: https://netlify.com/sitemap.xml

What the agent receives

The agent’s-eye view
Push your ideas to the web | Netlify More flexibility & credits now available for Pro plans 🎉 Close announcement bar Site navigation Go to homepage Skip to content Search Log in Toggle main menu Platform Toggle platform submenu The Netlify Platform Your app, live instantly. From AI tools or Git to global deployment in seconds. Everything included. Explore the platform Key Features Agent Runners Deploy Previews AI Gateway Functions Database Observability Security Edge network Solutions Toggle solutions submenu Why Netlify? Customers Enterprise Partner directory Agent experience Use Cases Prototypes Internal apps Coding agents Ecommerce Marketing sites Web apps Don’t see your solution? We can help. Chat with a Netlify expert Developers Toggle developers submenu Where to start Docs Developer guides Templates Integrations Build with AI Agents Claude Codex Cursor + More Frameworks Astro TanStack Next.js Wordpress React + More Build in Netlify with Claude, Codex, or Gemini. Try Agent Runners Resources Toggle resources submenu Blog Changelog Knowledge Base Community Events Customers Partner directory All resources Pricing Search Contact Log in Sign up Help Push your ideas to the web Create with AI or code, deploy instantly on production infrastructure. One platform to build and ship. Start building Talk to sales Add Netlify to your coding agent fetch https://netlify.ai How it works Build your way. Ship on one platform. Every path runs on the same workflow and production infrastructure, powering millions of sites and apps. Start with code or AI Start with a prompt, push from Git, or drag and drop. All paths lead to the same project. Build fullstack apps Connect APIs, manage data, optimize images, and add AI features from your first prompt. Go live everywhere Ship to a global CDN in seconds. Fast for every user, instantly. Play Get going Start your way. Choose the workflow that fits how you work. Start building with an AI agent Describe what you want to build. An AI agent handles the rest. Build now Deploy from Git Auto-deploy on every push. Every PR gets a preview URL. Import a project Deploy from terminal Deploy directly from your working directory. No login required to start. npm i -g netlify-cli netlify deploy --allow-anonymous Get started with CLI Drag and drop Drop your project folder and it's live in seconds. No setup required. Try Netlify Drop Workflow Prompt. Preview. Repeat. Prompt from the dashboard, develop locally, or push from Git. Every change gets a preview URL before it's live. Prompt Claude, Gemini, or Codex Deploy from Git, CLI, or drag and drop Preview every change before it's live Roll back any deploy in one click Platform Build with agent-ready primitives. Add APIs, run logic at the edge, schedule jobs, and handle background work on production infrastructure. Build APIs with serverless functions Add instant databases and file storage Handle auth with built-in identity Connect to AI models through AI Gateway Explore the platform Scale Grow on the same infrastructure. From your first deploy to global traffic, the same infrastructure supports your growth as you scale. Automatic HTTPS and DDoS protection Manage access, secrets, and env vars by team Global edge network with 99.99% uptime I can push a change, and within 30 seconds the site is completely rebuilt. Jeffrey Sica Kubernetes contributor, Head of Projects at CNCF Use cases For every kind of web app. Build everything from marketing sites to AI apps on one platform. AI apps Marketing sites SaaS apps Ecommerce Internal tools Launch AI features with one gateway Prototype, test, and scale AI-powered experiences faster. Product teams can iterate with agents while engineers productionize on the same platform. Prototype and ship AI features with Agent Runners Connect to OpenAI, Anthropic, and Gemini through AI Gateway Deploy backend logic as API endpoints with Serverless Functions Explore AI Gateway Example: Generate alt text with OpenAI import OpenAI from " openai " ; export default async ( req : Request ) => { const { description } = await req . json () ; const client = new OpenAI () ; const res = await client . responses . create ( { model : " gpt-5-mini " , input : [ { role : " user " , content : ` Write concise alt text for: ${ description }` }, ] , } ) ; return Response . json ( { altText : res . output_text } ) ; }; export const config = { path : " /api/alt-text " }; Launch fast and iterate faster Run campaigns quickly, test changes safely, and let marketers and designers contribute directly with agents. Generate pages, update copy, and publish with Agent Runners Review every change before it goes live with Deploy Previews Optimize and serve images on demand with Image CDN Marketing sites on Netlify Example: Optimized image with form <!-- Resize an image to 800px wide --> < img src = " /.netlify/images?url=/hero.jpg&w=800 " alt = " Optimized hero image " > <!-- Collect leads with zero config --> < form name = " waitlist " method = " POST " data-netlify = " true " > < label > Email: < input type = " email " name = " email " /></ label > < button type = " submit " > Join waitlist </ button > </ form > Build fullstack apps without managing infrastructure Prototype features quickly with agents and move them into production-ready code as you scale. Scaffold and iterate on features with Agent Runners Deploy and safely iterate on managed Postgres with Netlify Database Scale your backend logic without managing servers with Serverless Functions Explore platform primitives Example: Persist user-generated uploads import { getStore } from " @netlify/blobs " ; import type { Context } from " @netlify/functions " ; import { v4 as uuid } from " uuid " ; export default async ( req : Request , context : Context ) => { // Accessing the request as `multipart/form-data`. const form = await req . formData () ; const file = form . get ( " file " ) as File ; // Generating a unique key for the entry. const key = uuid () ; const uploads = getStore ( " file-uploads " ) ; await uploads . set (key , file , { metadata : { country : context . geo . country . name } } ) ; return new Response ( " Submission saved " ) ; }; Run fast storefronts at global scale Test new experiences quickly and let teams iterate safely across merchandising, design, and engineering. Prototype landing pages and flows with Agent Runners Deliver sub-second page loads from 100+ locations with Edge Network Optimize product images on the fly with Image CDN Ecommerce on Netlify Example: Fetch products from a headless API export default async ( req : Request ) => { const res = await fetch (Netlify . env . get ( " STORE_API_URL " ) , { headers : { Authorization : ` Bearer ${ Netlify . env . get ( " STORE_API_TOKEN " ) }` , }, } ) ; const { products } = await res . json () ; return Response . json ( products . map ( ( p ) => ( { id : p . id , title : p . title , price : p . variants[ 0 ] . price , image : ` /.netlify/images?url= ${ p . image } &w=400 ` , } )) ) ; }; export const config = { path : " /api/products " }; Create internal apps with less overhead Build dashboards and workflow tools faster with contributions from ops, data, and product teams. Build and update internal tools from the dashboard with Agent Runners Connect to internal APIs and databases with Serverless Functions Manage permissions across your team with Access Controls Internal apps on Netlify Example: Proxy an internal API export default async ( req : Request ) => { const { query } = await req . json () ; const res = await fetch (Netlify . env . get ( " INTERNAL_API " ) , { method : " POST " , headers : { Authorization : ` Bearer ${ Netlify . env . get ( " INTERNAL_TOKEN " ) }` , " Content-Type " : " application/json " , }, body : JSON . stringify ( { query } ) , } ) ; return new Response (res . body , { headers : { " Content-Type " : " application/json " }, } ) ; }; export const config = { path : " /api/in

Show your score

Embed this badge on your site. It links back to this live scan and updates on every rescan.

AgentSpeed score for netlify.com
<a href="https://agentspeed.com/scan/netlify.com"><img src="https://agentspeed.com/badge/netlify.com" alt="AgentSpeed agent-readiness score" height="56"></a>

Track this score

Get this report by email, then a heads-up when netlify.com’s agent-readiness actually changes — a check regressing, or the composite dropping.

Two things never trigger an email: a score change caused by us publishing a new rubric, because that is a different instrument rather than a change to your site, and movement explained only by timing-derived checks, which shift run to run on a site nobody touched.

Want it on your own schedule, with Slack or a webhook instead of email? Score-drift monitoring is on every paid plan.

This score says whether an AI agent could read netlify.com. AI traffic analytics says whether one actually came — and which pages turned it away.

Full breakdown

11 pass2 warn9 fail8 skip
Discoverability
pass
robots.txt present
A robots.txt is reachable at the site root.
100/100
pass
robots.txt allows AI agents
All 8 answer-time access agents allowed.
100/100
pass
Content-Signal directivesemerging
Content-Signal directives are advertised, declaring fine-grained AI usage preferences.
100/100
pass
llms.txt present
Found /llms.txt (2815 bytes), H1 + at least one link present.
100/100
fail
Sitemap present
No reachable sitemap.xml. Publish one and reference it in robots.txt.
0/100
warn
Link response headers
A Link: header is present but carries none of canonical/alternate/describedby — the relations agents consume.
60/100
skip
Canonical URL
Check could not run.
fail
MCP server cardemerging
No valid MCP Server Card at /.well-known/mcp/server-card.json. Publish one so agents can discover your tools without HTML scraping.
0/100
fail
OAuth authorization metadataemerging
No RFC 8414 metadata at /.well-known/oauth-authorization-server. Agents that act on behalf of users need this to discover your authorization endpoints.
0/100
fail
OAuth resource metadataemerging
No RFC 9728 metadata at /.well-known/oauth-protected-resource. Publish it so agents can discover required scopes without hand-coded credentials.
0/100
pass
API catalog / OpenAPIemerging
An API catalog (RFC 9727) or an OpenAPI document is reachable, so agents can plan API calls against your site.
100/100
fail
Web Bot Authemerging
No Web Bot Auth JWKS at /.well-known/http-message-signatures-directory.json. Publish one to allow trusted agents while keeping a default-deny posture for the rest.
0/100
Readability
pass
Markdown negotiationemerging
Requests with Accept: text/markdown return a markdown representation — agents prefer markdown over HTML for summarization and citation.
100/100
fail
Text-to-markup ratio
Visible text is 2.2% of HTML weight (8957/413492 bytes). Low. Markup may be crowding out agent-usable text.
16/100
skip
Content without JavaScript
Browser pass unavailable; cannot measure JS dependency.
skip
Heading hierarchy
Check could not run.
skip
Cookie wall blocks content
Check could not run.
skip
Page title
Check could not run.
skip
Meta description
Check could not run.
Structured data
pass
JSON-LD present
Found 1 JSON-LD block.
100/100
warn
Structured data validates
1 recommended-field warning(s). First: WebSite recommends "potentialAction" (improves agent comprehension). 1 block(s) skipped — type outside the set we check.
95/100
fail
Schema type coverage
Page looks like Article|BlogPosting|NewsArticle; missing JSON-LD type(s): Article|BlogPosting|NewsArticle.
0/100
Actionability
skip
Paywall / login wall
Check could not run.
fail
Agent Skills manifestemerging
No Agent Skills manifest at /.well-known/agent-skills.json. Enumerate the tasks agents can perform (search, add-to-cart, contact-support) so they pick the right one without scraping.
0/100
fail
WebMCP actionsemerging
No WebMCP detected. On pages with first-class actions (cart, support, account), embed a WebMCP server so on-page agents invoke tools directly.
0/100
pass
Primary action reachable
Primary offering identified ("Web deployment and hosting platform") with price/CTA ("Start building").
100/100
pass
Reachability
HTTP 200 after 1 redirect.
100/100
Performance
pass
Time to first byte
TTFB 221ms. Healthy.
80/100
skip
Full render time
Full-render time unavailable (browser pass skipped or failed).
pass
Page weight
Initial document is a lean 404 KB.
100/100
Beyond the scan

Running AI agents of your own? AgentSpeed also monitors them in production — every run, its latency, cost, and failures, with alerts when something breaks. Free for 10,000 events a month, no credit card.

Start watching free →See plans