Export Report
OVERALL SCORE
Level 2, Agent-Limited
- AI Discoverability 21 out of 100
- Agent Ease of Use 21 out of 100
- Security & Trust 80 out of 100
- GEO, AIO and AEO 54 out of 100
- SEO 85 out of 100
- Performance and Accessibility 51 out of 100
Next step
Turn this report into a fix workflow
28 failed checks are ready to move into MCP or CLI remediation. Generate a repair prompt, connect the scanner to your coding agent, or open the integration docs before your next rescan.
| Metric | Score | Status | Passed | Failed | Warning | Evidence |
|---|---|---|---|---|---|---|
| AI Discoverability | 21 | Priority fix | 5 | 19 | 1 | View details |
| Discoverability | 17 | Priority fix | 2 | 7 | 0 | View details |
| Content Readiness | 29 | Priority fix | 2 | 8 | 1 | View details |
| Bot Access Control | 17 | Priority fix | 1 | 4 | 0 | View details |
| Agent Ease of Use | 21 | Priority fix | 14 | 31 | 1 | View details |
| API | 28 | Priority fix | 2 | 7 | 0 | View details |
| Auth | 27 | Priority fix | 6 | 8 | 0 | View details |
| MCP | 25 | Priority fix | 2 | 6 | 0 | View details |
| Skill Discovery | 5 | Priority fix | 0 | 10 | 1 | View details |
| Agent Commerce | Not Applicable | Not Applicable | 4 | 0 | 0 | |
| GEO, AIO and AEO | 54 | Needs work | 3 | 6 | 10 | View details |
| GEO Readiness | 64 | Needs work | 1 | 1 | 3 | View details |
| AIO Readiness | 45 | Priority fix | 1 | 3 | 3 | View details |
| AEO Readiness | 53 | Needs work | 1 | 2 | 4 | View details |
| SEO | 85 | Mostly ready | 9 | 2 | 0 | View details |
| SEO | 85 | Mostly ready | 9 | 2 | 0 | View details |
| Security & Trust | 88 | Mostly ready | 8 | 1 | 0 | View details |
| Security & Trust | 80 | Mostly ready | 4 | 1 | 0 | View details |
| AI Training Exposure | 100 | Strong | 4 | 0 | 0 | |
| Performance and Accessibility | 51 | Needs work | 21 | 4 | 3 | View details |
| Performance | 30 | Priority fix | 13 | 4 | 3 | View details |
| Accessibility | 90 | Strong | 8 | 0 | 0 |
Prioritized recommendations
Issues ranked by score impact
53 items need attention
Security & TrustSecurity & TrustEstablished
Referrer-Policy
Referrer-Policy is missing or incomplete.
100 Fail
Security & TrustSecurity & TrustEstablished
Referrer-Policy
Referrer-Policy is missing or incomplete.
Needs attention
Referrer-Policy
Issue
Referrer-Policy is missing or incomplete.
Why it matters
Referrer-Policy controls how much URL context is sent to other origins, limiting accidental leakage of paths, queries, and identifiers.
Check name
Referrer-Policy
Score
0/100
Status
fail
Category
Security & Trust
Maturity
Established
Goal
Limit how much referrer data leaves the site.
Result
Referrer-Policy is missing or incomplete.
Evidence
{
"header": "referrer-policy",
"value": null
}Agent Ease of UseAuthEstablished
OAuth / OIDC discovery
OAuth / OIDC discovery failed at "Validate resource body".
40 Fail
Agent Ease of UseAuthEstablished
OAuth / OIDC discovery
OAuth / OIDC discovery failed at "Validate resource body".
Needs attention
OAuth / OIDC discovery
Issue
Response is not valid JSON.
Why it matters
OAuth and OIDC discovery let agents find authorization, token, and key endpoints programmatically instead of relying on human documentation.
Check name
OAuth / OIDC discovery
Score
20/100
Status
fail
Category
Auth
Maturity
Established
Goal
Publish OAuth/OIDC discovery metadata so agents can authenticate with your APIs.
Result
OAuth / OIDC discovery failed at "Validate resource body".
Validation steps
Validate resource body
Response is not valid JSON.
Probe authorization endpoint with an authorization-code request
authorization_endpoint is missing from discovery metadata.
Reject unregistered authorization redirects
authorization_endpoint is missing from discovery metadata.
Probe token endpoint with advertised grant type
token_endpoint is missing from discovery metadata.
Evidence
{
"failedStep": "validate",
"steps": [
{
"id": "fetch",
"title": "Fetch discovery resource",
"status": "pass",
"evidence": {
"path": "/.well-known/openid-configuration",
"statusCode": 200,
"contentType": "text/html"
}
},
{
"id": "validate",
"title": "Validate resource body",
"status": "fail",
"evidence": {
"valid": false,
"compatibleContentType": false,
"issue": "Response is not valid JSON.",
"rawExcerpt": "<!DOCTYPE html>\n<html lang=\"en\">\n\n\n\n<head>\n \n <link rel=\"manifest\" href=\"https://assets.grubhub.com/manifest.json\">\n\n \n <link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Find food\" href=\"/opensearch.xml\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n\n <script>\n // ------\n /* eslint-disable no-console */\n // const ls = JSON.parse(JSON.stringify(localStorage));\n // console.log('FOO - START UP - localStorage')\n // console.log(ls);\n // const sdk = JSON.parse(ls.__ghsdk_data);\n // console.log('REFRESH TOKEN:', sdk.auth.credentials.session_handle.refresh_token);\n // console.log('------------------------------------');\n // ------\n </script>\n\n <scri"
},
"issue": "Response is not valid JSON.",
"howToFix": "Publish valid OAuth/OIDC metadata only when the site actually supports OAuth/OIDC. Otherwise omit provider discovery and document any unauthenticated public APIs separately."
},
{
"id": "authorization-endpoint",
"title": "Probe authorization endpoint with an authorization-code request",
"status": "fail",
"evidence": {
"url": ""
},
"issue": "authorization_endpoint is missing from discovery metadata.",
"howToFix": "Advertise only implemented OAuth/OIDC endpoints."
},
{
"id": "authorization-redirect-safety",
"title": "Reject unregistered authorization redirects",
"status": "fail",
"evidence": {
"url": ""
},
"issue": "authorization_endpoint is missing from discovery metadata.",
"howToFix": "Validate clients and redirect_uri values before redirecting."
},
{
"id": "token-endpoint",
"title": "Probe token endpoint with advertised grant type",
"status": "fail",
"evidence": {
"url": ""
},
"issue": "token_endpoint is missing from discovery metadata.",
"howToFix": "Advertise only implemented OAuth/OIDC endpoints."
}
],
"authApplicability": {
"supportsAuth": false,
"score": 0,
"signals": []
},
"resourceFetchSucceeded": true
}Agent Ease of UseAuthEmerging recommendation
OAuth Protected Resource
OAuth Protected Resource failed at "Validate protected resource metadata".
34 Fail
Agent Ease of UseAuthEmerging recommendation
OAuth Protected Resource
OAuth Protected Resource failed at "Validate protected resource metadata".
Needs attention
OAuth Protected Resource
Issue
Response is not valid JSON.
Why it matters
Protected Resource metadata tells agents which authorization servers protect an API and how to connect authentication challenges to the right resource.
Check name
OAuth Protected Resource
Score
33/100
Status
fail
Category
Auth
Maturity
Emerging recommendation
Goal
Publish OAuth Protected Resource Metadata so agents can discover how to authenticate.
Result
OAuth Protected Resource failed at "Validate protected resource metadata".
Validation steps
Validate protected resource metadata
Response is not valid JSON.
Validate protected resource identity
Protected resource metadata `resource` did not match the resource identifier used to retrieve it.
Probe protected API Bearer challenge
No protected route with a 401 Bearer challenge was detected; metadata alone does not prove a protected resource.
Evidence
{
"failedStep": "metadata",
"steps": [
{
"id": "fetch",
"title": "Fetch protected resource metadata",
"status": "pass",
"evidence": {
"path": "/.well-known/oauth-protected-resource",
"statusCode": 200,
"contentType": "text/html"
},
"howToFix": "Publish /.well-known/oauth-protected-resource JSON."
},
{
"id": "metadata",
"title": "Validate protected resource metadata",
"status": "fail",
"evidence": {
"valid": false,
"compatibleContentType": false,
"issue": "Response is not valid JSON.",
"rawExcerpt": "<!DOCTYPE html>\n<html lang=\"en\">\n\n\n\n<head>\n \n <link rel=\"manifest\" href=\"https://assets.grubhub.com/manifest.json\">\n\n \n <link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Find food\" href=\"/opensearch.xml\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n\n <script>\n // ------\n /* eslint-disable no-console */\n // const ls = JSON.parse(JSON.stringify(localStorage));\n // console.log('FOO - START UP - localStorage')\n // console.log(ls);\n // const sdk = JSON.parse(ls.__ghsdk_data);\n // console.log('REFRESH TOKEN:', sdk.auth.credentials.session_handle.refresh_token);\n // console.log('------------------------------------');\n // ------\n </script>\n\n <scri"
},
"issue": "Response is not valid JSON.",
"howToFix": "Publish resource and authorization_servers as absolute URLs."
},
{
"id": "resource-identity",
"title": "Validate protected resource identity",
"status": "fail",
"evidence": {
"expectedResource": "https://www.grubhub.com"
},
"issue": "Protected resource metadata `resource` did not match the resource identifier used to retrieve it.",
"howToFix": "Set `resource` to the origin/resource identifier represented by /.well-known/oauth-protected-resource."
},
{
"id": "protected-route-challenge",
"title": "Probe protected API Bearer challenge",
"status": "informational",
"evidence": {
"checked": [
{
"path": "/api/admin/scans",
"statusCode": 404,
"wwwAuthenticate": {
"valid": false,
"present": false
},
"expectedMetadataUrl": "https://www.grubhub.com/.well-known/oauth-protected-resource",
"metadataUrlMatches": true,
"resourceMatchesRequestContext": true
},
{
"path": "/api/admin/summary",
"statusCode": 404,
"wwwAuthenticate": {
"valid": false,
"present": false
},
"expectedMetadataUrl": "https://www.grubhub.com/.well-known/oauth-protected-resource",
"metadataUrlMatches": true,
"resourceMatchesRequestContext": true
},
{
"path": "/api/scans",
"statusCode": 404,
"wwwAuthenticate": {
"valid": false,
"present": false
},
"expectedMetadataUrl": "https://www.grubhub.com/.well-known/oauth-protected-resource",
"metadataUrlMatches": true,
"resourceMatchesRequestContext": true
}
]
},
"issue": "No protected route with a 401 Bearer challenge was detected; metadata alone does not prove a protected resource.",
"howToFix": "When this site exposes bearer-protected APIs, return 401 with WWW-Authenticate: Bearer and link resource_metadata."
}
],
"authApplicability": {
"supportsAuth": false,
"score": 0,
"signals": []
},
"resourceFetchSucceeded": true
}AI DiscoverabilityBot Access ControlEstablished
AI bot rules in robots.txt
AI bot rules in robots.txt is missing or incomplete.
33 Fail
AI DiscoverabilityBot Access ControlEstablished
AI bot rules in robots.txt
AI bot rules in robots.txt is missing or incomplete.
Needs attention
AI bot rules in robots.txt
Issue
No specific User-agent rules found for major AI crawlers (GPTBot, ClaudeBot, etc.) in robots.txt.
Why it matters
Explicit AI bot rules reduce ambiguity for crawler operators and make training, indexing, or retrieval access policy auditable.
Check name
AI bot rules in robots.txt
Score
0/100
Status
fail
Category
Bot Access Control
Maturity
Established
Goal
Add User-agent rules for AI crawlers like GPTBot, Claude-Web, and others.
Result
AI bot rules in robots.txt is missing or incomplete.
Evidence
{
"expectedBots": [
"GPTBot",
"ChatGPT-User",
"ClaudeBot",
"Claude-Web",
"Anthropic-AI",
"Google-Extended",
"PerplexityBot",
"CCBot",
"Applebot-Extended",
"Meta-ExternalAgent",
"Bytespider",
"Amazonbot",
"Cohere-AI"
],
"configuredBots": []
}AI DiscoverabilityBot Access ControlInformational
Content Signal
Content Signal is missing or incomplete.
33 Fail
AI DiscoverabilityBot Access ControlInformational
Content Signal
Content Signal is missing or incomplete.
Needs attention
Content Signal
Issue
No Content Signal found in robots.txt
Why it matters
Content Signal provides a machine-readable way to communicate AI usage preferences where participating crawlers look for policy.
Check name
Content Signal
Score
0/100
Status
fail
Category
Bot Access Control
Maturity
Informational
Goal
Declare AI content usage preferences with Content Signal in robots.txt.
Result
Content Signal is missing or incomplete.
Evidence
{
"signals": [],
"ai-train": false,
"search": false,
"ai-input": false
}Agent Ease of UseMCPEmerging recommendation
MCP Server Card
MCP Server Card failed at "Fetch to find resource".
33 Fail
Agent Ease of UseMCPEmerging recommendation
MCP Server Card
MCP Server Card failed at "Fetch to find resource".
Needs attention
MCP Server Card
Issue
MCP Server Card was not found at the expected path.
Why it matters
MCP Server Cards help agents discover server transports, capabilities, and protocol details before opening an MCP session.
Check name
MCP Server Card
Score
0/100
Status
fail
Category
MCP
Maturity
Emerging recommendation
Goal
Publish an MCP Server Card for agent discovery.
Result
MCP Server Card failed at "Fetch to find resource".
Validation steps
Fetch to find resource
MCP Server Card was not found at the expected path.
Evidence
{
"failedStep": "fetch",
"steps": [
{
"id": "fetch",
"title": "Fetch to find resource",
"status": "fail",
"evidence": {
"checked": [
{
"path": "/.well-known/mcp/server-card.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
},
{
"path": "/.well-known/mcp/server-cards.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
},
{
"path": "/.well-known/mcp.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
}
]
},
"issue": "MCP Server Card was not found at the expected path.",
"howToFix": "Publish an MCP server card with valid transports and make each advertised local endpoint answer an MCP initialize request."
}
]
}Agent Ease of UseMCPEmerging recommendation
mcp.json
mcp.json failed at "Fetch to find resource".
33 Fail
Agent Ease of UseMCPEmerging recommendation
mcp.json
mcp.json failed at "Fetch to find resource".
Needs attention
mcp.json
Issue
mcp.json was not found at the expected path.
Why it matters
MCP clients need trustworthy server metadata, protocol version, transport details, and capability hints before connecting to a remote MCP server.
Check name
mcp.json
Score
0/100
Status
fail
Category
MCP
Maturity
Emerging recommendation
Goal
Expose a stable MCP server metadata document that points agents to the site's MCP endpoint.
Result
mcp.json failed at "Fetch to find resource".
Validation steps
Fetch to find resource
mcp.json was not found at the expected path.
Evidence
{
"failedStep": "fetch",
"steps": [
{
"id": "fetch",
"title": "Fetch to find resource",
"status": "fail",
"evidence": {
"checked": [
{
"path": "/mcp.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
},
{
"path": "/.well-known/mcp.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
},
{
"path": "/.well-known/mcp/server-card.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
}
]
},
"issue": "mcp.json was not found at the expected path.",
"howToFix": "Publish mcp.json or an MCP server card with serverInfo, protocolVersion, transport endpoint, and capabilities."
}
]
}Agent Ease of UseAPIEstablished
OpenAPI discovery
OpenAPI discovery failed at "Find valid OpenAPI document".
33 Fail
Agent Ease of UseAPIEstablished
OpenAPI discovery
OpenAPI discovery failed at "Find valid OpenAPI document".
Needs attention
OpenAPI discovery
Issue
OpenAPI YAML document did not match the expected shape. Content-Type "text/html" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.
Why it matters
OpenAPI documents let agents understand available operations, schemas, authentication, and request formats before calling an API.
Check name
OpenAPI discovery
Score
0/100
Status
fail
Category
API
Maturity
Established
Goal
Publish a valid OpenAPI or Swagger document for API discovery.
Result
OpenAPI discovery failed at "Find valid OpenAPI document".
Validation steps
Find valid OpenAPI document
OpenAPI YAML document did not match the expected shape. Content-Type "text/html" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.
Evidence
{
"failedStep": "fetch",
"steps": [
{
"id": "fetch",
"title": "Find valid OpenAPI document",
"status": "fail",
"evidence": {
"checked": [
{
"path": "/openapi.json",
"statusCode": 404,
"contentType": "text/html",
"valid": false,
"issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
"compatibleContentType": false,
"format": "yaml",
"version": "",
"pathCount": 0,
"operationCount": 0,
"rawExcerpt": "\n\n<!DOCTYPE html>\n<html>\n\n <head>\n <base href=\"/\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no\">\n <meta name=\"msapplication-config\" content=\"none\">\n <meta name=\"robots\" content=\"noindex, follow\">\n\n \n <link rel=\"stylesheet\" href=\"https://assets.grubhub.com/css/error-519f37dd4e0e8d00c0fd.css\">\n \n\n <title>400 - Permission denied</title>\n\n </head>\n\n <body>\n\n <div class=\"outerWrapper errorPage-static--notFound\">\n\n <header class=\"errorPage-static-navbar u-flex-center-center\">\n <a href=\"/\">\n <div class=\"errorPage-static-brand"
},
{
"path": "/openapi.yaml",
"statusCode": 200,
"contentType": "text/html",
"valid": false,
"issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
"compatibleContentType": false,
"format": "yaml",
"version": "",
"pathCount": 0,
"operationCount": 0,
"rawExcerpt": "<!DOCTYPE html>\n<html lang=\"en\">\n\n\n\n<head>\n \n <link rel=\"manifest\" href=\"https://assets.grubhub.com/manifest.json\">\n\n \n <link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Find food\" href=\"/opensearch.xml\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n\n <script>\n // ------\n /* eslint-disable no-console */\n // const ls = JSON.parse(JSON.stringify(localStorage));\n // console.log('FOO - START UP - localStorage')\n // console.log(ls);\n // const sdk = JSON.parse(ls.__ghsdk_data);\n // console.log('REFRESH TOKEN:', sdk.auth.credentials.session_handle.refresh_token);\n // console.log('------------------------------------');\n // ------\n </script>\n\n <scri"
},
{
"path": "/swagger.json",
"statusCode": 404,
"contentType": "text/html",
"valid": false,
"issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
"compatibleContentType": false,
"format": "yaml",
"version": "",
"pathCount": 0,
"operationCount": 0,
"rawExcerpt": "\n\n<!DOCTYPE html>\n<html>\n\n <head>\n <base href=\"/\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no\">\n <meta name=\"msapplication-config\" content=\"none\">\n <meta name=\"robots\" content=\"noindex, follow\">\n\n \n <link rel=\"stylesheet\" href=\"https://assets.grubhub.com/css/error-519f37dd4e0e8d00c0fd.css\">\n \n\n <title>400 - Permission denied</title>\n\n </head>\n\n <body>\n\n <div class=\"outerWrapper errorPage-static--notFound\">\n\n <header class=\"errorPage-static-navbar u-flex-center-center\">\n <a href=\"/\">\n <div class=\"errorPage-static-brand"
},
{
"path": "/swagger.yaml",
"statusCode": 200,
"contentType": "text/html",
"valid": false,
"issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
"compatibleContentType": false,
"format": "yaml",
"version": "",
"pathCount": 0,
"operationCount": 0,
"rawExcerpt": "<!DOCTYPE html>\n<html lang=\"en\">\n\n\n\n<head>\n \n <link rel=\"manifest\" href=\"https://assets.grubhub.com/manifest.json\">\n\n \n <link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Find food\" href=\"/opensearch.xml\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n\n <script>\n // ------\n /* eslint-disable no-console */\n // const ls = JSON.parse(JSON.stringify(localStorage));\n // console.log('FOO - START UP - localStorage')\n // console.log(ls);\n // const sdk = JSON.parse(ls.__ghsdk_data);\n // console.log('REFRESH TOKEN:', sdk.auth.credentials.session_handle.refresh_token);\n // console.log('------------------------------------');\n // ------\n </script>\n\n <scri"
},
{
"path": "/api/openapi.json",
"statusCode": 404,
"contentType": "text/html",
"valid": false,
"issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
"compatibleContentType": false,
"format": "yaml",
"version": "",
"pathCount": 0,
"operationCount": 0,
"rawExcerpt": "\n\n<!DOCTYPE html>\n<html>\n\n <head>\n <base href=\"/\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no\">\n <meta name=\"msapplication-config\" content=\"none\">\n <meta name=\"robots\" content=\"noindex, follow\">\n\n \n <link rel=\"stylesheet\" href=\"https://assets.grubhub.com/css/error-519f37dd4e0e8d00c0fd.css\">\n \n\n <title>400 - Permission denied</title>\n\n </head>\n\n <body>\n\n <div class=\"outerWrapper errorPage-static--notFound\">\n\n <header class=\"errorPage-static-navbar u-flex-center-center\">\n <a href=\"/\">\n <div class=\"errorPage-static-brand"
},
{
"path": "/api/swagger.json",
"statusCode": 404,
"contentType": "text/html",
"valid": false,
"issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
"compatibleContentType": false,
"format": "yaml",
"version": "",
"pathCount": 0,
"operationCount": 0,
"rawExcerpt": "\n\n<!DOCTYPE html>\n<html>\n\n <head>\n <base href=\"/\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no\">\n <meta name=\"msapplication-config\" content=\"none\">\n <meta name=\"robots\" content=\"noindex, follow\">\n\n \n <link rel=\"stylesheet\" href=\"https://assets.grubhub.com/css/error-519f37dd4e0e8d00c0fd.css\">\n \n\n <title>400 - Permission denied</title>\n\n </head>\n\n <body>\n\n <div class=\"outerWrapper errorPage-static--notFound\">\n\n <header class=\"errorPage-static-navbar u-flex-center-center\">\n <a href=\"/\">\n <div class=\"errorPage-static-brand"
},
{
"path": "/docs/openapi.json",
"statusCode": 404,
"contentType": "text/html",
"valid": false,
"issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
"compatibleContentType": false,
"format": "yaml",
"version": "",
"pathCount": 0,
"operationCount": 0,
"rawExcerpt": "\n\n<!DOCTYPE html>\n<html>\n\n <head>\n <base href=\"/\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no\">\n <meta name=\"msapplication-config\" content=\"none\">\n <meta name=\"robots\" content=\"noindex, follow\">\n\n \n <link rel=\"stylesheet\" href=\"https://assets.grubhub.com/css/error-519f37dd4e0e8d00c0fd.css\">\n \n\n <title>400 - Permission denied</title>\n\n </head>\n\n <body>\n\n <div class=\"outerWrapper errorPage-static--notFound\">\n\n <header class=\"errorPage-static-navbar u-flex-center-center\">\n <a href=\"/\">\n <div class=\"errorPage-static-brand"
}
]
},
"issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
"howToFix": "Publish a valid OpenAPI 3.x or Swagger 2.0 JSON/YAML document with info, paths, operations, and responses."
}
]
}Agent Ease of UseMCPInformational
WebMCP manifest
WebMCP manifest failed at "Fetch to find resource".
33 Fail
Agent Ease of UseMCPInformational
WebMCP manifest
WebMCP manifest failed at "Fetch to find resource".
Needs attention
WebMCP manifest
Issue
WebMCP manifest was not found at the expected path.
Why it matters
A WebMCP manifest advertises browser-exposed tools declaratively so agents can understand available site actions before invoking them.
Check name
WebMCP manifest
Score
0/100
Status
fail
Category
MCP
Maturity
Informational
Goal
Publish a WebMCP manifest for declarative browser tool discovery when using the draft manifest convention.
Result
WebMCP manifest failed at "Fetch to find resource".
Validation steps
Fetch to find resource
WebMCP manifest was not found at the expected path.
Evidence
{
"failedStep": "fetch",
"steps": [
{
"id": "fetch",
"title": "Fetch to find resource",
"status": "fail",
"evidence": {
"checked": [
{
"path": "/.well-known/webmcp.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
},
{
"path": "/webmcp.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
},
{
"path": "/mcp.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
}
]
},
"issue": "WebMCP manifest was not found at the expected path.",
"howToFix": "Keep declarative WebMCP manifest discovery informational until the manifest shape stabilizes; validate tools if you publish one."
}
]
}Agent Ease of UseAPIEstablished
API Catalog
API Catalog failed at "Validate RFC 9727 linkset".
22 Fail
Agent Ease of UseAPIEstablished
API Catalog
API Catalog failed at "Validate RFC 9727 linkset".
Needs attention
API Catalog
Issue
Response is not valid JSON.
Why it matters
API catalogs help agents find service descriptions, documentation, and status resources without guessing API entry points.
Check name
API Catalog
Score
33/100
Status
fail
Category
API
Maturity
Established
Goal
Publish an API catalog for automated API discovery using RFC 9727.
Result
API Catalog failed at "Validate RFC 9727 linkset".
Validation steps
Validate RFC 9727 linkset
Response is not valid JSON.
Fetch advertised API catalog targets
API Catalog did not expose any same-origin hrefs to validate.
Evidence
{
"failedStep": "validate",
"steps": [
{
"id": "fetch",
"title": "Fetch API catalog",
"status": "pass",
"evidence": {
"statusCode": 200,
"contentType": "text/html"
},
"howToFix": "Publish /.well-known/api-catalog."
},
{
"id": "validate",
"title": "Validate RFC 9727 linkset",
"status": "fail",
"evidence": {
"valid": false,
"compatibleContentType": false,
"issue": "Response is not valid JSON.",
"rawExcerpt": "<!DOCTYPE html>\n<html lang=\"en\">\n\n\n\n<head>\n \n <link rel=\"manifest\" href=\"https://assets.grubhub.com/manifest.json\">\n\n \n <link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Find food\" href=\"/opensearch.xml\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n\n <script>\n // ------\n /* eslint-disable no-console */\n // const ls = JSON.parse(JSON.stringify(localStorage));\n // console.log('FOO - START UP - localStorage')\n // console.log(ls);\n // const sdk = JSON.parse(ls.__ghsdk_data);\n // console.log('REFRESH TOKEN:', sdk.auth.credentials.session_handle.refresh_token);\n // console.log('------------------------------------');\n // ------\n </script>\n\n <scri"
},
"issue": "Response is not valid JSON.",
"howToFix": "Use application/linkset+json with service-desc, service-doc, and status relations that each include href."
},
{
"id": "target-validation",
"title": "Fetch advertised API catalog targets",
"status": "fail",
"evidence": {
"checked": [],
"failures": [
{
"reason": "No same-origin API catalog hrefs were available to fetch."
}
]
},
"issue": "API Catalog did not expose any same-origin hrefs to validate.",
"howToFix": "Make each same-origin API catalog href reachable and serve the advertised media type."
}
]
}Agent Ease of UseSkill DiscoveryEmerging recommendation
A2A Agent Card
A2A Agent Card failed at "Fetch to find resource".
20 Fail
Agent Ease of UseSkill DiscoveryEmerging recommendation
A2A Agent Card
A2A Agent Card failed at "Fetch to find resource".
Needs attention
A2A Agent Card
Issue
A2A Agent Card was not found at the expected path.
Why it matters
A2A Agent Cards let compatible clients discover agent skills, input and output modes, and the endpoint used to invoke those skills.
Check name
A2A Agent Card
Score
0/100
Status
fail
Category
Skill Discovery
Maturity
Emerging recommendation
Goal
Publish an agent card so A2A-compatible clients can discover capabilities.
Result
A2A Agent Card failed at "Fetch to find resource".
Validation steps
Fetch to find resource
A2A Agent Card was not found at the expected path.
Evidence
{
"failedStep": "fetch",
"steps": [
{
"id": "fetch",
"title": "Fetch to find resource",
"status": "fail",
"evidence": {
"checked": [
{
"path": "/.well-known/agent-card.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
},
{
"path": "/.well-known/a2a/agent-card.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
},
{
"path": "/agent-card.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
}
]
},
"issue": "A2A Agent Card was not found at the expected path.",
"howToFix": "Publish an A2A Agent Card with required skill details and make the advertised url answer A2A JSON-RPC requests."
}
]
}Agent Ease of UseSkill DiscoveryEmerging recommendation
Agent Skills index
Agent Skills index failed at "Fetch to find resource".
20 Fail
Agent Ease of UseSkill DiscoveryEmerging recommendation
Agent Skills index
Agent Skills index failed at "Fetch to find resource".
Needs attention
Agent Skills index
Issue
Agent Skills index was not found at the expected path.
Why it matters
An Agent Skills index lets clients find task-specific SKILL.md documents that describe how to use site capabilities correctly.
Check name
Agent Skills index
Score
0/100
Status
fail
Category
Skill Discovery
Maturity
Emerging recommendation
Goal
Publish an agent skills discovery index.
Result
Agent Skills index failed at "Fetch to find resource".
Validation steps
Fetch to find resource
Agent Skills index was not found at the expected path.
Evidence
{
"failedStep": "fetch",
"steps": [
{
"id": "fetch",
"title": "Fetch to find resource",
"status": "fail",
"evidence": {
"checked": [
{
"path": "/.well-known/agent-skills/index.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
},
{
"path": "/.well-known/skills/index.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
}
]
},
"issue": "Agent Skills index was not found at the expected path.",
"howToFix": "Publish an index with a non-empty skills array and reachable SKILL.md URLs."
}
]
}Agent Ease of UseSkill DiscoveryEmerging recommendation
agent.json
agent.json failed at "Fetch to find resource".
20 Fail
Agent Ease of UseSkill DiscoveryEmerging recommendation
agent.json
agent.json failed at "Fetch to find resource".
Needs attention
agent.json
Issue
agent.json was not found at the expected path.
Why it matters
agent.json is an emerging machine-readable manifest for declaring what a website does, how agents authenticate, and which actions or protocols are available.
Check name
agent.json
Score
0/100
Status
fail
Category
Skill Discovery
Maturity
Emerging recommendation
Goal
Publish the singular Agent Web Protocol agent.json manifest without confusing it with the separate agents.json directory convention.
Result
agent.json failed at "Fetch to find resource".
Validation steps
Fetch to find resource
agent.json was not found at the expected path.
Evidence
{
"failedStep": "fetch",
"steps": [
{
"id": "fetch",
"title": "Fetch to find resource",
"status": "fail",
"evidence": {
"checked": [
{
"path": "/.well-known/agent.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
},
{
"path": "/agent.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
}
]
},
"issue": "agent.json was not found at the expected path.",
"howToFix": "Publish agent.json with awp_version, domain, intent, and typed actions that point to real same-origin API or protocol endpoints."
}
]
}Agent Ease of UseSkill DiscoveryInformational
agents.json
agents.json failed at "Fetch to find resource".
20 Fail
Agent Ease of UseSkill DiscoveryInformational
agents.json
agents.json failed at "Fetch to find resource".
Needs attention
agents.json
Issue
agents.json was not found at the expected path.
Why it matters
agents.json gives clients a simple directory of agent-facing capabilities and contacts when a site chooses to advertise them.
Check name
agents.json
Score
0/100
Status
fail
Category
Skill Discovery
Maturity
Informational
Goal
Publish an agents.json directory for agent-facing capabilities and contacts when using this convention.
Result
agents.json failed at "Fetch to find resource".
Validation steps
Fetch to find resource
agents.json was not found at the expected path.
Evidence
{
"failedStep": "fetch",
"steps": [
{
"id": "fetch",
"title": "Fetch to find resource",
"status": "fail",
"evidence": {
"checked": [
{
"path": "/.well-known/agents.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
},
{
"path": "/agents.json",
"statusCode": 404,
"contentType": "text/html",
"length": 2777
}
]
},
"issue": "agents.json was not found at the expected path.",
"howToFix": "If this site uses agents.json, publish JSON with an agents array containing name and url for each agent."
}
]
}AI DiscoverabilityDiscoverabilityEstablished
High-value schema types
High-value schema types is missing or incomplete.
20 Fail
AI DiscoverabilityDiscoverabilityEstablished
High-value schema types
High-value schema types is missing or incomplete.
Needs attention
High-value schema types
Issue
No high-value schema types (e.g. Article, Product, Service) were found.
Why it matters
High-value schema types tell agents whether a page is an article, product, event, service, or other actionable content type.
Check name
High-value schema types
Score
0/100
Status
fail
Category
Discoverability
Maturity
Established
Goal
Use schema types that describe the page's primary content or offering.
Result
High-value schema types is missing or incomplete.
Evidence
{
"found": [],
"expected": [
"Article",
"BlogPosting",
"NewsArticle",
"Product",
"SoftwareApplication",
"FAQPage",
"LocalBusiness",
"VideoObject",
"HowTo",
"Event",
"Course",
"Review",
"Service"
],
"allTypes": []
}AI DiscoverabilityDiscoverabilityEstablished
JSON-LD present
JSON-LD present is missing or incomplete.
20 Fail
AI DiscoverabilityDiscoverabilityEstablished
JSON-LD present
JSON-LD present is missing or incomplete.
Needs attention
JSON-LD present
Issue
No JSON-LD blocks found.
Why it matters
JSON-LD is a low-friction structured data format that agents can extract without interpreting page presentation or microdata markup.
Check name
JSON-LD present
Score
0/100
Status
fail
Category
Discoverability
Maturity
Established
Goal
Expose schema.org JSON-LD so AI search systems can parse page entities.
Result
JSON-LD present is missing or incomplete.
Evidence
{
"blocks": 0,
"validBlocks": 0,
"schemaContextBlocks": 0,
"errors": [],
"documents": [],
"nodes": []
}AI DiscoverabilityDiscoverabilityEstablished
Link headers
Link headers failed at "Find useful Link headers".
20 Fail
AI DiscoverabilityDiscoverabilityEstablished
Link headers
Link headers failed at "Find useful Link headers".
Needs attention
Link headers
Issue
No useful agent discovery Link headers were found.
Why it matters
Link headers let automated clients discover API catalogs, documentation, and machine-readable alternates without parsing page markup first.
Check name
Link headers
Score
0/100
Status
fail
Category
Discoverability
Maturity
Established
Goal
Include Link response headers for agent discovery using RFC 8288.
Result
Link headers failed at "Find useful Link headers".
Validation steps
Find useful Link headers
No useful agent discovery Link headers were found.
Fetch same-origin Link header targets
Link headers did not expose any same-origin targets to validate.
Evidence
{
"failedStep": "presence",
"steps": [
{
"id": "presence",
"title": "Find useful Link headers",
"status": "fail",
"evidence": {
"links": []
},
"issue": "No useful agent discovery Link headers were found.",
"howToFix": "Expose useful Link headers such as rel=\"api-catalog\", rel=\"service-doc\", and rel=\"service-desc\"."
},
{
"id": "target-validation",
"title": "Fetch same-origin Link header targets",
"status": "fail",
"evidence": {
"checked": [],
"failures": [
{
"reason": "No same-origin Link header targets were available to fetch."
}
]
},
"issue": "Link headers did not expose any same-origin targets to validate.",
"howToFix": "Make each same-origin Link href reachable and serve the advertised media type."
}
]
}AI DiscoverabilityContent ReadinessEstablished
Markdown negotiation
Markdown negotiation failed at "Markdown content type".
20 Fail
AI DiscoverabilityContent ReadinessEstablished
Markdown negotiation
Markdown negotiation failed at "Markdown content type".
Needs attention
Markdown negotiation
Issue
Content-Type "text/html" does not indicate Markdown when requested with Accept: text/markdown.
Why it matters
Markdown negotiation gives agents a cleaner representation of page content while preserving normal HTML for browsers.
Check name
Markdown negotiation
Score
0/100
Status
fail
Category
Content Readiness
Maturity
Established
Goal
Return HTML responses as markdown when agents request it.
Result
Markdown negotiation failed at "Markdown content type".
Validation steps
Markdown content type
Content-Type "text/html" does not indicate Markdown when requested with Accept: text/markdown.
Vary: Accept header
Markdown negotiation is missing Vary: Accept; current Vary header is "Accept-Encoding".
Structured Markdown body
Markdown response is missing a heading.
Evidence
{
"failedStep": "content-type",
"steps": [
{
"id": "content-type",
"title": "Markdown content type",
"status": "fail",
"evidence": {
"statusCode": 200,
"contentType": "text/html"
},
"issue": "Content-Type \"text/html\" does not indicate Markdown when requested with Accept: text/markdown.",
"howToFix": "Return Content-Type: text/markdown; charset=utf-8 for requests with Accept: text/markdown."
},
{
"id": "vary-accept",
"title": "Vary: Accept header",
"status": "fail",
"evidence": {
"vary": "Accept-Encoding"
},
"issue": "Markdown negotiation is missing Vary: Accept; current Vary header is \"Accept-Encoding\".",
"howToFix": "Add Vary: Accept on negotiated Markdown responses so shared caches keep HTML and Markdown variants separate."
},
{
"id": "markdown-content",
"title": "Structured Markdown body",
"status": "fail",
"evidence": {
"valid": false,
"hasHeading": false,
"wordCount": 1064,
"excerpt": "<!DOCTYPE html>\n<html lang=\"en\">\n\n\n\n<head>\n \n <link rel=\"manifest\" href=\"https://assets.grubhub.com/manifest.json\">\n\n \n <link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Find food\" href=\"/opensearch.xml\">\n\n ",
"issue": "Markdown response is missing a heading."
},
"issue": "Markdown response is missing a heading.",
"howToFix": "Return Markdown with at least one heading and substantive page content, including useful links or instructions for agents."
}
]
}AI DiscoverabilityDiscoverabilityEstablished
Organization / WebSite schema
Organization / WebSite schema is missing or incomplete.
20 Fail
AI DiscoverabilityDiscoverabilityEstablished
Organization / WebSite schema
Organization / WebSite schema is missing or incomplete.
Needs attention
Organization / WebSite schema
Issue
Neither Organization nor WebSite schema types were found in JSON-LD.
Why it matters
Organization and WebSite schema help agents identify the publisher, canonical site identity, logo, and related profiles for attribution.
Check name
Organization / WebSite schema
Score
0/100
Status
fail
Category
Discoverability
Maturity
Established
Goal
Identify the site owner and website entity in structured data.
Result
Organization / WebSite schema is missing or incomplete.
Evidence
{
"found": [],
"allTypes": []
}AI DiscoverabilityContent ReadinessEstablished
Semantic HTML
Semantic HTML is missing or incomplete.
20 Fail
AI DiscoverabilityContent ReadinessEstablished
Semantic HTML
Semantic HTML is missing or incomplete.
Needs attention
Semantic HTML
Issue
Semantic HTML is incomplete: missing <main> landmark; missing <nav> landmark; missing <footer> landmark.
Why it matters
Semantic HTML gives browsers, assistive technology, search systems, and agents reliable landmarks, headings, controls, form semantics, and image context.
Check name
Semantic HTML
Score
0/100
Status
fail
Category
Content Readiness
Maturity
Established
Goal
Expose readable page structure through semantic HTML and accessible controls.
Result
Semantic HTML is missing or incomplete.
Evidence
{
"main": false,
"nav": false,
"footer": false,
"meaningfulH1": true,
"headingOrder": true,
"accessibleLinks": true,
"accessibleButtons": true,
"imageAltCoverage": true,
"formAutocompleteCoverage": true,
"details": {
"inaccessibleLinks": [],
"inaccessibleButtons": [],
"missingAutocompleteInputs": [],
"imagesMissingAlt": [],
"skippedHeadingLevels": []
},
"counts": {
"h1": 1,
"headings": 2,
"links": 2,
"inaccessibleLinks": 0,
"buttons": 0,
"inaccessibleButtons": 0,
"images": 0,
"imagesWithAlt": 0,
"autocompleteInputs": 0,
"inputsWithAutocomplete": 0,
"missingAutocompleteInputs": 0
}
}AI DiscoverabilityDiscoverabilityEstablished
Sitemap
Sitemap is missing or incomplete.
20 Fail
AI DiscoverabilityDiscoverabilityEstablished
Sitemap
Sitemap is missing or incomplete.
Needs attention
Sitemap
Issue
No valid XML sitemap found at checked locations: https://www.grubhub.com/sitemap.xml, https://www.grubhub.com/sitemap_index.xml, https://www.grubhub.com/sitemap-index.xml.
Why it matters
Sitemaps help crawlers and agents discover canonical URLs, updated pages, and deeper content that may not be obvious from the homepage navigation.
Check name
Sitemap
Score
0/100
Status
fail
Category
Discoverability
Maturity
Established
Goal
Publish a sitemap and reference it from robots.txt.
Result
Sitemap is missing or incomplete.
Evidence
{
"checked": [
"https://www.grubhub.com/sitemap.xml",
"https://www.grubhub.com/sitemap_index.xml",
"https://www.grubhub.com/sitemap-index.xml"
]
}AI DiscoverabilityContent ReadinessEstablished
Structured data
Structured data is missing or incomplete.
20 Fail
AI DiscoverabilityContent ReadinessEstablished
Structured data
Structured data is missing or incomplete.
Needs attention
Structured data
Issue
No structured data (JSON-LD, Microdata, or RDFa) found on page.
Why it matters
Structured data gives agents explicit entities, relationships, and page meaning that are harder to infer reliably from visual layout alone.
Check name
Structured data
Score
0/100
Status
fail
Category
Content Readiness
Maturity
Established
Goal
Expose machine-readable page entities and relationships.
Result
Structured data is missing or incomplete.
Evidence
{
"jsonLdBlocks": 0,
"microdata": false,
"rdfa": false
}Agent Ease of UseAPIEmerging recommendation
AI context endpoint
AI context endpoint failed at "Validate resource body".
17 Fail
Agent Ease of UseAPIEmerging recommendation
AI context endpoint
AI context endpoint failed at "Validate resource body".
Needs attention
AI context endpoint
Issue
Content-Type "text/html" is not JSON, Markdown, or text/plain.
Why it matters
A context endpoint gives agents a small, low-latency summary of product purpose, safe actions, and canonical machine-readable resources without scraping the whole site.
Check name
AI context endpoint
Score
50/100
Status
fail
Category
API
Maturity
Emerging recommendation
Goal
Expose a compact API context endpoint agents can fetch before deciding which public API or discovery resource to use.
Result
AI context endpoint failed at "Validate resource body".
Validation steps
Validate resource body
Content-Type "text/html" is not JSON, Markdown, or text/plain.
Evidence
{
"failedStep": "validate",
"steps": [
{
"id": "fetch",
"title": "Fetch discovery resource",
"status": "pass",
"evidence": {
"path": "/context",
"statusCode": 200,
"contentType": "text/html"
}
},
{
"id": "validate",
"title": "Validate resource body",
"status": "fail",
"evidence": {
"valid": false,
"compatibleContentType": false,
"issue": "Content-Type \"text/html\" is not JSON, Markdown, or text/plain.",
"rawExcerpt": "<!DOCTYPE html>\n<html lang=\"en\">\n\n\n\n<head>\n \n <link rel=\"manifest\" href=\"https://assets.grubhub.com/manifest.json\">\n\n \n <link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Find food\" href=\"/opensearch.xml\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n\n <script>\n // ------\n /* eslint-disable no-console */\n // const ls = JSON.parse(JSON.stringify(localStorage));\n // console.log('FOO - START UP - localStorage')\n // console.log(ls);\n // const sdk = JSON.parse(ls.__ghsdk_data);\n // console.log('REFRESH TOKEN:', sdk.auth.credentials.session_handle.refresh_token);\n // console.log('------------------------------------');\n // ------\n </script>\n\n <scri"
},
"issue": "Content-Type \"text/html\" is not JSON, Markdown, or text/plain.",
"howToFix": "Publish a concise JSON or Markdown AI context endpoint describing the product, public actions, and machine-readable resources."
}
]
}AI DiscoverabilityBot Access ControlInformational
Web Bot Auth request signing
Web Bot Auth request signing failed at "Validate resource body".
17 Fail
AI DiscoverabilityBot Access ControlInformational
Web Bot Auth request signing
Web Bot Auth request signing failed at "Validate resource body".
Needs attention
Web Bot Auth request signing
Issue
Response is not valid JSON.
Why it matters
Web Bot Auth discovery lets servers and clients find signing keys for bot identity workflows based on HTTP Message Signatures.
Check name
Web Bot Auth request signing
Score
50/100
Status
fail
Category
Bot Access Control
Maturity
Informational
Goal
Advertise HTTP Message Signatures keys when this site operates signed bot clients or supports Web Bot Auth workflows.
Result
Web Bot Auth request signing failed at "Validate resource body".
Validation steps
Validate resource body
Response is not valid JSON.
Evidence
{
"failedStep": "validate",
"steps": [
{
"id": "fetch",
"title": "Fetch discovery resource",
"status": "pass",
"evidence": {
"path": "/.well-known/http-message-signatures-directory",
"statusCode": 200,
"contentType": "text/html"
}
},
{
"id": "validate",
"title": "Validate resource body",
"status": "fail",
"evidence": {
"valid": false,
"validJson": false,
"compatibleContentType": false,
"issue": "Response is not valid JSON.",
"rawExcerpt": "<!DOCTYPE html>\n<html lang=\"en\">\n\n\n\n<head>\n \n <link rel=\"manifest\" href=\"https://assets.grubhub.com/manifest.json\">\n\n \n <link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Find food\" href=\"/opensearch.xml\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n\n <script>\n // ------\n /* eslint-disable no-console */\n // const ls = JSON.parse(JSON.stringify(localStorage));\n // console.log('FOO - START UP - localStorage')\n // console.log(ls);\n // const sdk = JSON.parse(ls.__ghsdk_data);\n // console.log('REFRESH TOKEN:', sdk.auth.credentials.session_handle.refresh_token);\n // console.log('------------------------------------');\n // ------\n </script>\n\n <scri"
},
"issue": "Response is not valid JSON.",
"howToFix": "If publishing Web Bot Auth keys, return a JSON key directory with a non-empty keys array and the draft media type."
}
]
}Agent Ease of UseSkill DiscoveryEmerging recommendation
DNS-AID Agent Discovery
DNS-AID Agent Discovery failed at "Resolve DNS-AID SVCB/HTTPS records".
15 Fail
Agent Ease of UseSkill DiscoveryEmerging recommendation
DNS-AID Agent Discovery
DNS-AID Agent Discovery failed at "Resolve DNS-AID SVCB/HTTPS records".
Needs attention
DNS-AID Agent Discovery
Issue
No DNS-AID entrypoint records were found under _agents.
Why it matters
DNS-AID lets agents discover index, A2A, and other agent entrypoints before fetching HTTP metadata, while DNSSEC can authenticate the discovery zone.
Check name
DNS-AID Agent Discovery
Score
25/100
Status
fail
Category
Skill Discovery
Maturity
Emerging recommendation
Goal
Publish DNS for AI Discovery records under _agents for DNS-based agent entrypoint discovery.
Result
DNS-AID Agent Discovery failed at "Resolve DNS-AID SVCB/HTTPS records".
Validation steps
Resolve DNS-AID SVCB/HTTPS records
No DNS-AID entrypoint records were found under _agents.
Validate alpn and endpoint parameters
Include alpn and endpoint service parameters in each DNS-AID record so agents know the protocol and target entrypoint.
Check DNSSEC material
DNSSEC material was not visible for the hostname or parent zone from this resolver.
Evidence
{
"failedStep": "svcb-https-records",
"steps": [
{
"id": "svcb-https-records",
"title": "Resolve DNS-AID SVCB/HTTPS records",
"status": "fail",
"evidence": {
"hostname": "www.grubhub.com",
"probes": [
{
"name": "_index._agents.www.grubhub.com",
"found": false,
"recordCount": 1,
"records": [],
"hasAlpn": false,
"hasEndpoint": false
},
{
"name": "_a2a._agents.www.grubhub.com",
"found": false,
"recordCount": 1,
"records": [],
"hasAlpn": false,
"hasEndpoint": false
}
]
},
"issue": "No DNS-AID entrypoint records were found under _agents.",
"howToFix": "Publish ServiceMode SVCB/HTTPS records such as _index._agents.example.com or _a2a._agents.example.com."
},
{
"id": "service-params",
"title": "Validate alpn and endpoint parameters",
"status": "informational",
"evidence": {
"discovered": []
},
"howToFix": "Include alpn and endpoint service parameters in each DNS-AID record so agents know the protocol and target entrypoint."
},
{
"id": "dnssec",
"title": "Check DNSSEC material",
"status": "warning",
"evidence": {
"hasDnssecMaterial": false,
"checked": [
{
"name": "www.grubhub.com",
"dnssecTypes": [],
"dnssecRecordCount": 0
},
{
"name": "grubhub.com",
"dnssecTypes": [],
"dnssecRecordCount": 0
}
]
},
"issue": "DNSSEC material was not visible for the hostname or parent zone from this resolver.",
"howToFix": "Sign the public discovery zone with DNSSEC so validating resolvers can return authenticated data."
}
]
}AI DiscoverabilityContent ReadinessEstablished
Content freshness signals
Content freshness signals is partially implemented.
15 Warning
AI DiscoverabilityContent ReadinessEstablished
Content freshness signals
Content freshness signals is partially implemented.
Needs attention
Content freshness signals
Issue
Content freshness signals are incomplete: missing dateModified/datePublished in JSON-LD; missing meta or <time> freshness tags.
Why it matters
Freshness signals help agents decide whether content is current enough to cite, summarize, or compare against newer sources.
Check name
Content freshness signals
Score
25/100
Status
warning
Category
Content Readiness
Maturity
Established
Goal
Expose modified and published dates for freshness-aware retrieval and ranking.
Result
Content freshness signals is partially implemented.
Evidence
{
"lastModified": "Tue, 02 Jun 2026 18:52:49 GMT",
"schemaDates": [],
"metaDateCount": 0,
"timeDateCount": 0
}AI DiscoverabilityContent ReadinessEmerging recommendation
llms.txt
llms.txt failed at "Validate resource body".
10 Fail
AI DiscoverabilityContent ReadinessEmerging recommendation
llms.txt
llms.txt failed at "Validate resource body".
Needs attention
llms.txt
Issue
llms.txt response did not match the expected shape. Content-Type "text/html" is not Markdown or text/plain; missing h1 title (e.g. # Site Name).
Why it matters
llms.txt gives language-model clients a concise, curated summary of important site context and links before they crawl broadly.
Check name
llms.txt
Score
50/100
Status
fail
Category
Content Readiness
Maturity
Emerging recommendation
Goal
Publish llms.txt to summarize agent-readable site guidance.
Result
llms.txt failed at "Validate resource body".
Validation steps
Validate resource body
llms.txt response did not match the expected shape. Content-Type "text/html" is not Markdown or text/plain; missing h1 title (e.g. # Site Name).
Evidence
{
"failedStep": "validate",
"steps": [
{
"id": "fetch",
"title": "Fetch discovery resource",
"status": "pass",
"evidence": {
"path": "/llms.txt",
"statusCode": 200,
"contentType": "text/html"
}
},
{
"id": "validate",
"title": "Validate resource body",
"status": "fail",
"evidence": {
"valid": false,
"issue": "llms.txt response did not match the expected shape. Content-Type \"text/html\" is not Markdown or text/plain; missing h1 title (e.g. # Site Name).",
"compatibleContentType": false,
"hasTitle": false,
"contentLength": 9314,
"linkCount": 91,
"links": [
"/manifest.json",
"/opensearchdescription+xml",
"/opensearch.xml",
"//",
"/*",
"//",
"//",
"//",
"//",
"//"
],
"rawExcerpt": "<!DOCTYPE html>\n<html lang=\"en\">\n\n\n\n<head>\n \n <link rel=\"manifest\" href=\"https://assets.grubhub.com/manifest.json\">\n\n \n <link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Find food\" href=\"/opensearch.xml\">\n\n \n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta charset=\"utf-8\">\n\n <script>\n // ------\n /* eslint-disable no-console */\n // const ls = JSON.parse(JSON.stringify(localStorage));\n // console.log('FOO - START UP - localStorage')\n // console.log(ls);\n // const sdk = JSON.parse(ls.__ghsdk_data);\n // console.log('REFRESH TOKEN:', sdk.auth.credentials.session_handle.refresh_token);\n // console.log('------------------------------------');\n // ------\n </script>\n\n <scri"
},
"issue": "llms.txt response did not match the expected shape. Content-Type \"text/html\" is not Markdown or text/plain; missing h1 title (e.g. # Site Name).",
"howToFix": "Publish /llms.txt as Markdown with a clear title, concise site summary, and useful links for agents."
}
]
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AEO: Answer evidence and trust
AEO: Answer evidence and trust scored 0/100 and needs a fix.
9 Fail
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AEO: Answer evidence and trust
AEO: Answer evidence and trust scored 0/100 and needs a fix.
Needs attention
AEO: Answer evidence and trust
Issue
Missing AIO trust signals: author, publisher, freshnessDate, aboutOrContact, policyLinks.
Details
Why it matters
Answer engines need concise answers, question-led structure, entity clarity, visible evidence, and trust signals that can be extracted without relying on search-only metadata checks.
Check name
AEO: Answer evidence and trust
Score
0/100
Status
fail
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content easy for answer engines and assistants to answer from directly.
Result
AEO: Answer evidence and trust scored 0/100 and needs a fix.
Evidence
{
"signals": {
"author": false,
"publisher": false,
"freshnessDate": false,
"aboutOrContact": false,
"policyLinks": false
},
"missing": [
"author",
"publisher",
"freshnessDate",
"aboutOrContact",
"policyLinks"
],
"authorMeta": "",
"schemaAuthors": [],
"schemaPublishers": [],
"schemaDates": [],
"visibleDates": [],
"aboutLinks": [],
"contactLinks": [],
"privacyLinks": [],
"score": 0,
"weight": 22
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Source and trust signals
AIO: Source and trust signals scored 0/100 and needs a fix.
8 Fail
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Source and trust signals
AIO: Source and trust signals scored 0/100 and needs a fix.
Needs attention
AIO: Source and trust signals
Issue
Missing AIO trust signals: author, publisher, freshnessDate, aboutOrContact, policyLinks.
Details
Why it matters
AI Overviews depend on Google-search eligibility, useful visible content, consistent structured data, answer-first sections, trust signals, and preview controls that permit snippets.
Check name
AIO: Source and trust signals
Score
0/100
Status
fail
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content eligible and useful for Google AI Overviews and AI Mode extraction.
Result
AIO: Source and trust signals scored 0/100 and needs a fix.
Evidence
{
"signals": {
"author": false,
"publisher": false,
"freshnessDate": false,
"aboutOrContact": false,
"policyLinks": false
},
"missing": [
"author",
"publisher",
"freshnessDate",
"aboutOrContact",
"policyLinks"
],
"authorMeta": "",
"schemaAuthors": [],
"schemaPublishers": [],
"schemaDates": [],
"visibleDates": [],
"aboutLinks": [],
"contactLinks": [],
"privacyLinks": [],
"score": 0,
"weight": 20
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Visible structured data match
AIO: Visible structured data match scored 0/100 and needs a fix.
7 Fail
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Visible structured data match
AIO: Visible structured data match scored 0/100 and needs a fix.
Needs attention
AIO: Visible structured data match
Issue
No JSON-LD structured data was detected.
Details
Why it matters
AI Overviews depend on Google-search eligibility, useful visible content, consistent structured data, answer-first sections, trust signals, and preview controls that permit snippets.
Check name
AIO: Visible structured data match
Score
0/100
Status
fail
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content eligible and useful for Google AI Overviews and AI Mode extraction.
Result
AIO: Visible structured data match scored 0/100 and needs a fix.
Evidence
{
"schemaCount": 0,
"mismatches": [],
"score": 0,
"weight": 18
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
GEO: Explanatory content depth
GEO: Explanatory content depth scored 25/100 and needs a fix.
7 Fail
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
GEO: Explanatory content depth
GEO: Explanatory content depth scored 25/100 and needs a fix.
Needs attention
GEO: Explanatory content depth
Issue
No substantial explanatory paragraphs were found.
Details
Why it matters
Generative engines favor pages with self-contained answer passages, clear entities, structured data, summaries, FAQ patterns, and crawler-accessible HTML that can be cited without extra interpretation.
Check name
GEO: Explanatory content depth
Score
25/100
Status
fail
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content easy for AI answer engines to extract, cite, and attribute.
Result
GEO: Explanatory content depth scored 25/100 and needs a fix.
Evidence
{
"candidatePassages": 1,
"citablePassages": 0,
"failingCandidateParagraphs": [],
"citableParagraphs": [],
"score": 25,
"weight": 18
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
GEO: AI crawler accessibility
GEO: AI crawler accessibility scored 55/100 and needs improvement.
6 Warning
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
GEO: AI crawler accessibility
GEO: AI crawler accessibility scored 55/100 and needs improvement.
Needs attention
GEO: AI crawler accessibility
Issue
Only 28 words of Chrome-rendered body text were detected. No rendered JSON-LD schema block was detected.
Details
Why it matters
Generative engines favor pages with self-contained answer passages, clear entities, structured data, summaries, FAQ patterns, and crawler-accessible HTML that can be cited without extra interpretation.
Check name
GEO: AI crawler accessibility
Score
55/100
Status
warning
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content easy for AI answer engines to extract, cite, and attribute.
Result
GEO: AI crawler accessibility scored 55/100 and needs improvement.
Evidence
{
"textWords": 28,
"htmlBytes": 14048,
"robots": {
"checkedCrawlers": [
"gptbot",
"chatgpt-user",
"claudebot",
"perplexitybot",
"google-extended"
],
"blocked": [],
"allows": true
},
"schemaBlocks": 0,
"finalUrl": "https://www.grubhub.com/",
"robotsExcerpt": "User-agent: *\nDisallow: /*gulp.action*\nDisallow: /search\nDisallow: /checkout/\nDisallow: /account/\nDisallow: /oauth2/\nDisallow: /rds/\nDisallow: /restaurant/*/menu/item/*/choice/*\nDisallow: /restaurant/*/menu-item/*\nDisallow: /restaurant/*?proof\nDisallow: /program/\nDisallow: /my-bag\nDisallow: /restaurant/*?category\nDisallow: /restaurant/*&category\nDisallow: /restaurant/*?querySearch\nDisallow: /restaurant/*&querySearch\nDisallow: /lets-eat/*\nDisallow: /explore/*\n",
"score": 55,
"weight": 26
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
GEO: Extraction-friendly structure
GEO: Extraction-friendly structure scored 60/100 and needs improvement.
5 Warning
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
GEO: Extraction-friendly structure
GEO: Extraction-friendly structure scored 60/100 and needs improvement.
Needs attention
GEO: Extraction-friendly structure
Issue
Missing extraction signals: optional top summary / TL;DR / key takeaways block, table with <thead> only if the page already has tabular/comparative data, ordered list only if the page explains a workflow/process, optional visible FAQ or FAQPage schema, JSON-LD structured data.
Details
Why it matters
Generative engines favor pages with self-contained answer passages, clear entities, structured data, summaries, FAQ patterns, and crawler-accessible HTML that can be cited without extra interpretation.
Check name
GEO: Extraction-friendly structure
Score
60/100
Status
warning
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content easy for AI answer engines to extract, cite, and attribute.
Result
GEO: Extraction-friendly structure scored 60/100 and needs improvement.
Evidence
{
"hasSummary": false,
"tableCount": 0,
"tablesWithHead": 0,
"tablesMissingThead": [],
"orderedLists": 0,
"hasFaq": false,
"definitionPatterns": 1,
"schemaBlocks": 0,
"missingSignals": [
"optional top summary / TL;DR / key takeaways block",
"table with <thead> only if the page already has tabular/comparative data",
"ordered list only if the page explains a workflow/process",
"optional visible FAQ or FAQPage schema",
"JSON-LD structured data"
],
"score": 60,
"weight": 24
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AEO: Answer-first sections
AEO: Answer-first sections scored 65/100 and needs improvement.
4 Warning
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AEO: Answer-first sections
AEO: Answer-first sections scored 65/100 and needs improvement.
Needs attention
AEO: Answer-first sections
Issue
1 section(s) may benefit from a clearer opening answer; this is optional for feature/card sections.
Details
Why it matters
Answer engines need concise answers, question-led structure, entity clarity, visible evidence, and trust signals that can be extracted without relying on search-only metadata checks.
Check name
AEO: Answer-first sections
Score
65/100
Status
warning
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content easy for answer engines and assistants to answer from directly.
Result
AEO: Answer-first sections scored 65/100 and needs improvement.
Evidence
{
"sectionCount": 1,
"passing": 0,
"failing": [
{
"heading": "No proble... well, actually",
"headingHtml": "<h2 class=\"errorPage-reasons-header\"> No proble... well, actually </h2>",
"firstParagraph": "Our site is delivered by JavaScript. To continue, please enable JavaScript in your browser's preferences.",
"paragraphHtml": "<p class=\"lead u-stack-y-8\"> Our site is delivered by JavaScript. To continue, please enable JavaScript in your browser's preferences. </p>",
"words": 15,
"direct": false,
"issue": "First paragraph is 15 words and does not look like a concise direct answer."
}
],
"score": 65,
"weight": 28
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AEO: Question-led structure
AEO: Question-led structure scored 50/100 and needs improvement.
4 Warning
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AEO: Question-led structure
AEO: Question-led structure scored 50/100 and needs improvement.
Needs attention
AEO: Question-led structure
Issue
No question-led h2 sections or FAQ pattern was detected.
Details
Why it matters
Answer engines need concise answers, question-led structure, entity clarity, visible evidence, and trust signals that can be extracted without relying on search-only metadata checks.
Check name
AEO: Question-led structure
Score
50/100
Status
warning
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content easy for answer engines and assistants to answer from directly.
Result
AEO: Question-led structure scored 50/100 and needs improvement.
Evidence
{
"h2Count": 1,
"questionH2s": [],
"hasFaq": false,
"score": 50,
"weight": 18
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AEO: Extractable visible copy
AEO: Extractable visible copy scored 35/100 and needs a fix.
2 Fail
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AEO: Extractable visible copy
AEO: Extractable visible copy scored 35/100 and needs a fix.
Needs attention
AEO: Extractable visible copy
Issue
Only 28 visible words were detected for answer extraction.
Why it matters
Answer engines need concise answers, question-led structure, entity clarity, visible evidence, and trust signals that can be extracted without relying on search-only metadata checks.
Check name
AEO: Extractable visible copy
Score
35/100
Status
fail
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content easy for answer engines and assistants to answer from directly.
Result
AEO: Extractable visible copy scored 35/100 and needs a fix.
Evidence
{
"visibleWords": 28,
"schemaCount": 0,
"score": 35,
"weight": 6
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Google eligibility and indexability
AIO: Google eligibility and indexability scored 80/100 and needs improvement.
1 Warning
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Google eligibility and indexability
AIO: Google eligibility and indexability scored 80/100 and needs improvement.
Needs attention
AIO: Google eligibility and indexability
Issue
Canonical tag is missing.
Details
Why it matters
AI Overviews depend on Google-search eligibility, useful visible content, consistent structured data, answer-first sections, trust signals, and preview controls that permit snippets.
Check name
AIO: Google eligibility and indexability
Score
80/100
Status
warning
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content eligible and useful for Google AI Overviews and AI Mode extraction.
Result
AIO: Google eligibility and indexability scored 80/100 and needs improvement.
Evidence
{
"status": 200,
"googlebotBlocked": false,
"metaRobotsTags": [],
"xRobotsTag": "",
"canonical": "",
"finalUrl": "https://www.grubhub.com/",
"canonicalScore": 0,
"score": 80,
"weight": 18
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Answer block readiness
AIO: Answer block readiness scored 65/100 and needs improvement.
1 Warning
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Answer block readiness
AIO: Answer block readiness scored 65/100 and needs improvement.
Needs attention
AIO: Answer block readiness
Issue
1 section(s) may benefit from a clearer opening answer; this is optional for feature/card sections.
Details
Why it matters
AI Overviews depend on Google-search eligibility, useful visible content, consistent structured data, answer-first sections, trust signals, and preview controls that permit snippets.
Check name
AIO: Answer block readiness
Score
65/100
Status
warning
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content eligible and useful for Google AI Overviews and AI Mode extraction.
Result
AIO: Answer block readiness scored 65/100 and needs improvement.
Evidence
{
"sectionCount": 1,
"passing": 0,
"failing": [
{
"heading": "No proble... well, actually",
"headingHtml": "<h2 class=\"errorPage-reasons-header\"> No proble... well, actually </h2>",
"firstParagraph": "Our site is delivered by JavaScript. To continue, please enable JavaScript in your browser's preferences.",
"paragraphHtml": "<p class=\"lead u-stack-y-8\"> Our site is delivered by JavaScript. To continue, please enable JavaScript in your browser's preferences. </p>",
"words": 15,
"direct": false,
"issue": "First paragraph is 15 words and does not look like a concise direct answer."
}
],
"score": 65,
"weight": 8
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AEO: Answer intent coverage
AEO: Answer intent coverage scored 70/100 and needs improvement.
1 Warning
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AEO: Answer intent coverage
AEO: Answer intent coverage scored 70/100 and needs improvement.
Needs attention
AEO: Answer intent coverage
Issue
Missing likely AI Overview intent sections: what, how, benefits, cost, compare.
Details
Why it matters
Answer engines need concise answers, question-led structure, entity clarity, visible evidence, and trust signals that can be extracted without relying on search-only metadata checks.
Check name
AEO: Answer intent coverage
Score
70/100
Status
warning
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content easy for answer engines and assistants to answer from directly.
Result
AEO: Answer intent coverage scored 70/100 and needs improvement.
Evidence
{
"headings": [
{
"text": "No proble... well, actually",
"html": "<h2 class=\"errorPage-reasons-header\"> No proble... well, actually </h2>"
}
],
"expected": [
{
"id": "what",
"label": "What is Prepare your taste buds...?",
"pattern": {}
},
{
"id": "how",
"label": "How does Prepare your taste buds... work?",
"pattern": {}
},
{
"id": "benefits",
"label": "Why use Prepare your taste buds...?",
"pattern": {}
},
{
"id": "cost",
"label": "Is Prepare your taste buds... free or paid?",
"pattern": {}
},
{
"id": "compare",
"label": "How does Prepare your taste buds... compare with alternatives?",
"pattern": {}
}
],
"missing": [
{
"id": "what",
"label": "What is Prepare your taste buds...?",
"pattern": {}
},
{
"id": "how",
"label": "How does Prepare your taste buds... work?",
"pattern": {}
},
{
"id": "benefits",
"label": "Why use Prepare your taste buds...?",
"pattern": {}
},
{
"id": "cost",
"label": "Is Prepare your taste buds... free or paid?",
"pattern": {}
},
{
"id": "compare",
"label": "How does Prepare your taste buds... compare with alternatives?",
"pattern": {}
}
],
"score": 70,
"weight": 8
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Page experience for AIO
AIO: Page experience for AIO scored 75/100 and needs improvement.
1 Warning
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Page experience for AIO
AIO: Page experience for AIO scored 75/100 and needs improvement.
Needs attention
AIO: Page experience for AIO
Issue
Only 28 words of visible rendered text were detected.
Details
Why it matters
AI Overviews depend on Google-search eligibility, useful visible content, consistent structured data, answer-first sections, trust signals, and preview controls that permit snippets.
Check name
AIO: Page experience for AIO
Score
75/100
Status
warning
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content eligible and useful for Google AI Overviews and AI Mode extraction.
Result
AIO: Page experience for AIO scored 75/100 and needs improvement.
Evidence
{
"viewportContent": "width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no",
"visibleWords": 28,
"htmlBytes": 14048,
"imagesMissingDimensions": [],
"possibleDialogs": [],
"score": 75,
"weight": 10
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Query intent coverage
AIO: Query intent coverage is informational for this page.
Informational
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
AIO: Query intent coverage
AIO: Query intent coverage is informational for this page.
Needs attention
AIO: Query intent coverage
Issue
Missing likely AI Overview intent sections: what, how, benefits, cost, compare.
Details
Why it matters
AI Overviews depend on Google-search eligibility, useful visible content, consistent structured data, answer-first sections, trust signals, and preview controls that permit snippets.
Check name
AIO: Query intent coverage
Score
70/100
Status
informational
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content eligible and useful for Google AI Overviews and AI Mode extraction.
Result
AIO: Query intent coverage is informational for this page.
Evidence
{
"headings": [
{
"text": "No proble... well, actually",
"html": "<h2 class=\"errorPage-reasons-header\"> No proble... well, actually </h2>"
}
],
"expected": [
{
"id": "what",
"label": "What is Prepare your taste buds...?",
"pattern": {}
},
{
"id": "how",
"label": "How does Prepare your taste buds... work?",
"pattern": {}
},
{
"id": "benefits",
"label": "Why use Prepare your taste buds...?",
"pattern": {}
},
{
"id": "cost",
"label": "Is Prepare your taste buds... free or paid?",
"pattern": {}
},
{
"id": "compare",
"label": "How does Prepare your taste buds... compare with alternatives?",
"pattern": {}
}
],
"missing": [
{
"id": "what",
"label": "What is Prepare your taste buds...?",
"pattern": {}
},
{
"id": "how",
"label": "How does Prepare your taste buds... work?",
"pattern": {}
},
{
"id": "benefits",
"label": "Why use Prepare your taste buds...?",
"pattern": {}
},
{
"id": "cost",
"label": "Is Prepare your taste buds... free or paid?",
"pattern": {}
},
{
"id": "compare",
"label": "How does Prepare your taste buds... compare with alternatives?",
"pattern": {}
}
],
"score": 70,
"weight": 4
}GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
GEO: Q&A and FAQ opportunities
GEO: Q&A and FAQ opportunities is informational for this page.
Informational
GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation
GEO: Q&A and FAQ opportunities
GEO: Q&A and FAQ opportunities is informational for this page.
Needs attention
GEO: Q&A and FAQ opportunities
Issue
1 h2 heading(s) are not phrased as questions; this is optional and only useful where Q&A wording is natural. No visible FAQ or FAQPage schema was detected; this is optional unless the page answers common questions.
Details
Why it matters
Generative engines favor pages with self-contained answer passages, clear entities, structured data, summaries, FAQ patterns, and crawler-accessible HTML that can be cited without extra interpretation.
Check name
GEO: Q&A and FAQ opportunities
Score
75/100
Status
informational
Category
GEO, AIO & AEO
Maturity
Emerging recommendation
Goal
Make page content easy for AI answer engines to extract, cite, and attribute.
Result
GEO: Q&A and FAQ opportunities is informational for this page.
Evidence
{
"h2Count": 1,
"questionH2s": 0,
"hasFaq": false,
"nonQuestionH2s": [
{
"index": 1,
"text": "No proble... well, actually",
"isQuestion": false,
"html": "<h2 class=\"errorPage-reasons-header\"> No proble... well, actually </h2>"
}
],
"score": 75,
"weight": 4
}AI DiscoverabilityDiscoverabilityEstablished
IndexNow key
IndexNow key is informational for this page.
Informational
AI DiscoverabilityDiscoverabilityEstablished
IndexNow key
IndexNow key is informational for this page.
Needs attention
IndexNow key
Issue
IndexNow key is informational for this page.
Why it matters
IndexNow lets sites notify participating search engines about changed URLs, but ownership verification requires a UTF-8 key file whose filename matches the key.
Check name
IndexNow key
Score
100/100
Status
informational
Category
Discoverability
Maturity
Established
Goal
Verify that IndexNow ownership key placement is detectable when the site advertises it.
Result
IndexNow key is informational for this page.
Validation steps
Find advertised IndexNow key location
No IndexNow key location was advertised in HTML, Link headers, or robots.txt.
Fetch and validate IndexNow key file
No discoverable IndexNow key file was found.
Evidence
{
"steps": [
{
"id": "advertised-location",
"title": "Find advertised IndexNow key location",
"status": "informational",
"evidence": {
"advertised": []
},
"issue": "No IndexNow key location was advertised in HTML, Link headers, or robots.txt.",
"howToFix": "Advertise the key location with robots.txt IndexNow-Key, rel=\"indexnow-key\", or meta name=\"indexnow-key-location\" if you want scanners to verify it."
},
{
"id": "fetch-key",
"title": "Fetch and validate IndexNow key file",
"status": "informational",
"evidence": {
"advertised": [],
"checked": []
},
"issue": "No discoverable IndexNow key file was found.",
"howToFix": "Host a UTF-8 text file named {key}.txt using a 32-character hexadecimal key whose body exactly matches the key."
}
]
}Performance and AccessibilityBest PracticesBrowser audit
Browser errors were logged to the console
100 Fail
Performance and AccessibilityBest PracticesBrowser audit
Browser errors were logged to the console
Check name
Browser errors were logged to the console
Score
0/100
Status
fail
Device
desktop
Category
Best Practices
Fix guidance
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. [Learn more about this errors in console diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/errors-in-console/)
Evidence
{
"description": "Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. [Learn more about this errors in console diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/errors-in-console/)"
}SEOSEOBrowser audit
Links are not crawlable
50 Fail
SEOSEOBrowser audit
Links are not crawlable
Check name
Links are not crawlable
Score
0/100
Status
fail
Device
desktop
Category
SEO
Fix guidance
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. [Learn how to make links crawlable](https://support.google.com/webmasters/answer/9112205)
Evidence
{
"description": "Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. [Learn how to make links crawlable](https://support.google.com/webmasters/answer/9112205)"
}SEOSEOBrowser audit
Links do not have descriptive text
50 Fail
SEOSEOBrowser audit
Links do not have descriptive text
Check name
Links do not have descriptive text
Score
0/100
Status
fail
Device
desktop
Category
SEO
Estimated savings
4 links found
Fix guidance
Descriptive link text helps search engines understand your content. [Learn how to make links more accessible](https://developer.chrome.com/docs/lighthouse/seo/link-text/).
Evidence
{
"displayValue": "4 links found",
"description": "Descriptive link text helps search engines understand your content. [Learn how to make links more accessible](https://developer.chrome.com/docs/lighthouse/seo/link-text/)."
}Performance and AccessibilityPerformanceBrowser audit
Font display
14 Fail
Performance and AccessibilityPerformanceBrowser audit
Font display
Check name
Font display
Score
0/100
Status
fail
Device
desktop
Category
Performance
Estimated savings
Est savings of 170Â ms
Fix guidance
Consider setting [font-display](https://developer.chrome.com/docs/performance/insights/font-display) to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with [font metric overrides](https://developer.chrome.com/blog/font-fallbacks).
References
https://web.dev/learn/performance/Evidence
{
"displayValue": "Est savings of 170Â ms",
"description": "Consider setting [font-display](https://developer.chrome.com/docs/performance/insights/font-display) to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with [font metric overrides](https://developer.chrome.com/blog/font-fallbacks)."
}Performance and AccessibilityPerformanceBrowser audit
LCP breakdown
14 Fail
Performance and AccessibilityPerformanceBrowser audit
LCP breakdown
Check name
LCP breakdown
Score
0/100
Status
fail
Device
desktop
Category
Performance
Fix guidance
Each [subpart has specific improvement strategies](https://developer.chrome.com/docs/performance/insights/lcp-breakdown). Ideally, most of the LCP time should be spent on loading the resources, not within delays.
References
https://web.dev/learn/performance/Evidence
{
"description": "Each [subpart has specific improvement strategies](https://developer.chrome.com/docs/performance/insights/lcp-breakdown). Ideally, most of the LCP time should be spent on loading the resources, not within delays."
}Performance and AccessibilityPerformanceBrowser audit
LCP request discovery
14 Fail
Performance and AccessibilityPerformanceBrowser audit
LCP request discovery
Check name
LCP request discovery
Score
0/100
Status
fail
Device
desktop
Category
Performance
Fix guidance
[Optimize LCP](https://developer.chrome.com/docs/performance/insights/lcp-discovery) by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
References
https://web.dev/learn/performance/Evidence
{
"description": "[Optimize LCP](https://developer.chrome.com/docs/performance/insights/lcp-discovery) by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading"
}Performance and AccessibilityPerformanceBrowser audit
Loading performance
10 Fail
Performance and AccessibilityPerformanceBrowser audit
Loading performance
Check name
Loading performance
Score
31/100
Status
fail
Device
desktop
Category
Performance
Fix guidance
Review the grouped loading performance checks and improve the failing sub-checks listed in evidence.
References
https://web.dev/learn/performance/Evidence
{
"checks": [
{
"id": "total-blocking-time",
"title": "Total Blocking Time",
"score": 0,
"displayValue": "3,460Â ms",
"numericValue": 3463.5000000000045
},
{
"id": "largest-contentful-paint",
"title": "Largest Contentful Paint",
"score": 6,
"displayValue": "5.5Â s",
"numericValue": 5491.831590908516
},
{
"id": "network-rtt",
"title": "Network Round Trip Times",
"score": 100,
"displayValue": "70Â ms",
"numericValue": 68.738175
},
{
"id": "max-potential-fid",
"title": "Max Potential First Input Delay",
"score": 0,
"displayValue": "860Â ms",
"numericValue": 861
},
{
"id": "interactive",
"title": "Time to Interactive",
"score": 7,
"displayValue": "8.8Â s",
"numericValue": 8767.295716252767
},
{
"id": "server-response-time",
"title": "Initial server response time was short",
"score": 100,
"displayValue": "Root document took 0Â ms",
"numericValue": 3
},
{
"id": "speed-index",
"title": "Speed Index",
"score": 1,
"displayValue": "6.2Â s",
"numericValue": 6222.589634581713
},
{
"id": "first-contentful-paint",
"title": "First Contentful Paint",
"score": 31,
"displayValue": "2.0Â s",
"numericValue": 1960.6599080588182
}
]
}Performance and AccessibilityPerformanceBrowser audit
Document request latency
7 Warning
Performance and AccessibilityPerformanceBrowser audit
Document request latency
Check name
Document request latency
Score
50/100
Status
warning
Device
desktop
Category
Performance
Estimated savings
Est savings of 9Â KiB
Fix guidance
Your first network request is the most important. [Reduce its latency](https://developer.chrome.com/docs/performance/insights/document-latency) by avoiding redirects, ensuring a fast server response, and enabling text compression.
References
https://web.dev/learn/performance/Evidence
{
"displayValue": "Est savings of 9Â KiB",
"description": "Your first network request is the most important. [Reduce its latency](https://developer.chrome.com/docs/performance/insights/document-latency) by avoiding redirects, ensuring a fast server response, and enabling text compression."
}Performance and AccessibilityPerformanceBrowser audit
Image elements do not have explicit `width` and `height`
7 Warning
Performance and AccessibilityPerformanceBrowser audit
Image elements do not have explicit `width` and `height`
Check name
Image elements do not have explicit `width` and `height`
Score
50/100
Status
warning
Device
desktop
Category
Performance
Fix guidance
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. [Learn how to set image dimensions](https://web.dev/articles/optimize-cls#images_without_dimensions)
References
https://web.dev/learn/performance/Evidence
{
"description": "Set an explicit width and height on image elements to reduce layout shifts and improve CLS. [Learn how to set image dimensions](https://web.dev/articles/optimize-cls#images_without_dimensions)"
}Performance and AccessibilityPerformanceBrowser audit
Legacy JavaScript
7 Warning
Performance and AccessibilityPerformanceBrowser audit
Legacy JavaScript
Check name
Legacy JavaScript
Score
50/100
Status
warning
Device
desktop
Category
Performance
Estimated savings
Est savings of 83Â KiB
Fix guidance
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile [Baseline](https://web.dev/articles/baseline-and-polyfills) features, unless you know you must support older browsers. [Learn why most sites can deploy ES6+ code without transpiling](https://developer.chrome.com/docs/performance/insights/legacy-javascript)
References
https://web.dev/learn/performance/Evidence
{
"displayValue": "Est savings of 83Â KiB",
"description": "Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile [Baseline](https://web.dev/articles/baseline-and-polyfills) features, unless you know you must support older browsers. [Learn why most sites can deploy ES6+ code without transpiling](https://developer.chrome.com/docs/performance/insights/legacy-javascript)"
}Fix with MCP or CLI
Use this report as the handoff into remediation. Generate a coding-agent prompt with the failing checks attached, or jump to the MCP and CLI setup docs before your next rescan.
Score history
Public scan score over time
Public reports for this website origin. Select any point or report link to open that canonical report.
| Scan date | Score | Readiness | Report |
|---|---|---|---|
| 44/100 | Level 2, Agent-Limited | Current report |