agent-ready-mcp 0.7.3 → 0.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/mcp-server.mjs +15 -12
  2. package/package.json +1 -1
@@ -31258,7 +31258,7 @@ Group fixes into three buckets:
31258
31258
  - **Next** \u2014 medium-effort fixes (a few hours each).
31259
31259
  - **Later** \u2014 structural changes (days of work).
31260
31260
 
31261
- For each fix include: the check id (e.g. P11, S15, L9), a one-sentence description, the concrete code/config change to make, and the expected impact ("unlocks 1 check" / "unlocks all 23 per-page checks" / etc.).
31261
+ For each fix include: the check id (e.g. P11, S15, L9), a one-sentence description, the concrete code/config change to make, and the expected impact ("unlocks 1 check" / "unlocks all 24 per-page checks" / etc.).
31262
31262
 
31263
31263
  Skip checks that already pass.`
31264
31264
  }
@@ -31271,7 +31271,7 @@ Skip checks that already pass.`
31271
31271
  // src/resource-content.ts
31272
31272
  var METHODOLOGY_MD = `# How Agent Ready scores a site
31273
31273
 
31274
- > 70 checks across four categories, mapped to the Vercel Agent Readability Spec and the llmstxt.org standard. Every check is open and reproducible.
31274
+ > 71 checks across four categories, mapped to the Vercel Agent Readability Spec and the llmstxt.org standard. Every check is open and reproducible.
31275
31275
 
31276
31276
  ## What does Agent Ready measure?
31277
31277
 
@@ -31312,7 +31312,7 @@ Full guide: <https://agent-ready.dev/methodology>
31312
31312
  `;
31313
31313
  var CHECKS_MD = `# Agent Ready check registry
31314
31314
 
31315
- > 70 checks total across four categories. IDs are stable and referenced in every scan result's \`details\` array. Each check is implemented as a single function in \`src/lib/checks/{category}/{id}-{slug}.ts\` in the agent-ready repository.
31315
+ > 71 checks total across four categories. IDs are stable and referenced in every scan result's \`details\` array. Each check is implemented as a single function in \`src/lib/checks/{category}/{id}-{slug}.ts\` in the agent-ready repository.
31316
31316
 
31317
31317
  ## Site checks (15)
31318
31318
 
@@ -31336,7 +31336,7 @@ Run once per scan against the root URL. Cover discovery files (\`llms.txt\`, \`r
31336
31336
  | S14 | HTTPS |
31337
31337
  | S15 | Root OpenAPI spec |
31338
31338
 
31339
- ## Page checks (23)
31339
+ ## Page checks (24)
31340
31340
 
31341
31341
  Run against every URL fetched in the scan. Cover HTTP semantics, metadata, JSON-LD, markdown mirrors, content negotiation, code-block language tags, and JS-rendering dependency.
31342
31342
 
@@ -31365,6 +31365,7 @@ Run against every URL fetched in the scan. Cover HTTP semantics, metadata, JSON-
31365
31365
  | P21 | Code block language tags |
31366
31366
  | P22 | API schema link |
31367
31367
  | P23 | JS rendering dependency |
31368
+ | P24 | llms.txt discovery link |
31368
31369
 
31369
31370
  ## llms.txt checks (10)
31370
31371
 
@@ -31414,7 +31415,7 @@ Discover-then-validate: when the relevant well-known endpoint returns 404, the c
31414
31415
 
31415
31416
  ## Accessibility checks (23)
31416
31417
 
31417
- Run over the homepage DOM (v1). WCAG-grounded accessibility-tree signals \u2014 image text alternatives, form labels, control names \u2014 plus a static layout-stability (CLS) proxy. Scored into a separate \`accessibilityScore\`, a distinct suite from the 70 checks above: accessibility is WCAG, not the Vercel Agent Readability Spec, so it never moves the Vercel score.
31418
+ Run over the homepage DOM (v1). WCAG-grounded accessibility-tree signals \u2014 image text alternatives, form labels, control names \u2014 plus a static layout-stability (CLS) proxy. Scored into a separate \`accessibilityScore\`, a distinct suite from the 71 checks above: accessibility is WCAG, not the Vercel Agent Readability Spec, so it never moves the Vercel score.
31418
31419
 
31419
31420
  | ID | Check |
31420
31421
  |---|---|
@@ -31440,10 +31441,11 @@ Run over the homepage DOM (v1). WCAG-grounded accessibility-tree signals \u2014
31440
31441
  | A20 | SVG images have a text alternative |
31441
31442
  | A21 | Media declares a captions track |
31442
31443
  | A22 | List structure is well-formed |
31443
- | A23 | ARIA roles and attributes are valid |`;
31444
+ | A23 | ARIA roles and attributes are valid |
31445
+ `;
31444
31446
  var LLMS_TXT = `# Agent Ready
31445
31447
 
31446
- > Agent Ready is a free tool that scores any website against the Vercel Agent Readability Spec, the llmstxt.org specification, and agent-protocol specs (MCP, A2A, agents.json). It runs 70 checks \u2014 plus a separate accessibility sub-score from 23 WCAG 2.2 / layout-stability checks \u2014 and provides actionable fix guidance for every failing check.
31448
+ > Agent Ready is a free tool that scores any website against the Vercel Agent Readability Spec, the llmstxt.org specification, and agent-protocol specs (MCP, A2A, agents.json). It runs 71 checks \u2014 plus a separate accessibility sub-score from 23 WCAG 2.2 / layout-stability checks \u2014 and provides actionable fix guidance for every failing check.
31447
31449
 
31448
31450
  This resource mirrors agent-ready.dev's own /llms.txt so MCP clients can introspect the same surface that ChatGPT, Perplexity, and other AI agents see when discovering Agent Ready as a tool.
31449
31451
 
@@ -31477,7 +31479,7 @@ Agent Ready's checks map to the specifications below. Each entry links to the ca
31477
31479
  ## Readability
31478
31480
 
31479
31481
  - **Vercel Agent Readability Spec** \u2014 The core spec for exposing a site to AI agents \u2014 discovery files, structured data, clean HTML, and markdown mirrors. Drives most site (S) and every page (P) check. Canonical: <https://vercel.com/kb/guide/agent-readability-spec> Checks: S5\u2013S15, P1\u2013P23.
31480
- - **llmstxt.org** \u2014 The /llms.txt curated-context file (and optional llms-full.txt companion). Structural checks carry 3\xD7 weight in the llms.txt sub-score. Canonical: <https://llmstxt.org> Checks: S1\u2013S4, L1\u2013L10.
31482
+ - **llmstxt.org** \u2014 The /llms.txt curated-context file (and optional llms-full.txt companion), v2 as of August 2026 \u2014 adding discovery link relations and a second markdown-twin URL form. Structural checks carry 3\xD7 weight in the llms.txt sub-score; P24 verifies the v2 rel="describedby" discovery link on every page. Canonical: <https://llmstxt.org> Checks: S1\u2013S4, L1\u2013L10, P24.
31481
31483
 
31482
31484
  ## Agent protocols
31483
31485
 
@@ -31508,7 +31510,8 @@ Agent Ready's checks map to the specifications below. Each entry links to the ca
31508
31510
 
31509
31511
  ## Accessibility
31510
31512
 
31511
- - **WCAG 2.2 + layout stability** \u2014 The accessibility tree \u2014 image text alternatives, form labels, control names, resolved ARIA references, named iframes, a page title, a valid language tag, a main landmark, accessible names that match their visible text, valid ARIA, well-formed lists and tables, and autofill tokens an agent can act on \u2014 is what assistive tech and AI agents parse to act on a page; explicit media dimensions and enabled zoom keep it stable and usable (with a static CLS proxy). Scored as a separate accessibilityScore, not part of the Vercel score. Canonical: <https://www.w3.org/TR/WCAG22/> Checks: A1\u2013A23.`;
31513
+ - **WCAG 2.2 + layout stability** \u2014 The accessibility tree \u2014 image text alternatives, form labels, control names, resolved ARIA references, named iframes, a page title, a valid language tag, a main landmark, accessible names that match their visible text, valid ARIA, well-formed lists and tables, and autofill tokens an agent can act on \u2014 is what assistive tech and AI agents parse to act on a page; explicit media dimensions and enabled zoom keep it stable and usable (with a static CLS proxy). Scored as a separate accessibilityScore, not part of the Vercel score. Canonical: <https://www.w3.org/TR/WCAG22/> Checks: A1\u2013A23.
31514
+ `;
31512
31515
 
31513
31516
  // src/resources.ts
31514
31517
  function registerResources(server) {
@@ -31517,7 +31520,7 @@ function registerResources(server) {
31517
31520
  "agent-ready://methodology",
31518
31521
  {
31519
31522
  title: "Scoring methodology",
31520
- description: "How Agent Ready computes the 0\u2013100 readability score and the llms.txt sub-score. Covers the 70 checks across four categories, rating bands, weighting, and JS-rendering handling.",
31523
+ description: "How Agent Ready computes the 0\u2013100 readability score and the llms.txt sub-score. Covers the 71 checks across four categories, rating bands, weighting, and JS-rendering handling.",
31521
31524
  mimeType: "text/markdown"
31522
31525
  },
31523
31526
  async () => ({
@@ -31535,7 +31538,7 @@ function registerResources(server) {
31535
31538
  "agent-ready://checks",
31536
31539
  {
31537
31540
  title: "Check registry",
31538
- description: "Reference table of all 70 checks Agent Ready runs, grouped by category (site, page, llms.txt, protocol), plus the 23-check accessibility suite scored as a separate accessibility sub-score. Each row pairs the stable check ID (e.g. P11, S15, L9, C3, A7) with its human-readable name. Use this to identify a check by id when interpreting scan results.",
31541
+ description: "Reference table of all 71 checks Agent Ready runs, grouped by category (site, page, llms.txt, protocol), plus the 23-check accessibility suite scored as a separate accessibility sub-score. Each row pairs the stable check ID (e.g. P11, S15, L9, C3, A7) with its human-readable name. Use this to identify a check by id when interpreting scan results.",
31539
31542
  mimeType: "text/markdown"
31540
31543
  },
31541
31544
  async () => ({
@@ -31862,7 +31865,7 @@ var validateStructuredDataInputShape = {
31862
31865
  // src/server.ts
31863
31866
  var SERVER_INFO = {
31864
31867
  name: "agent-ready",
31865
- version: "0.7.3"
31868
+ version: "0.7.5"
31866
31869
  };
31867
31870
  function createMcpServer(config2) {
31868
31871
  const server = new McpServer(SERVER_INFO);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-ready-mcp",
3
- "version": "0.7.3",
3
+ "version": "0.7.5",
4
4
  "mcpName": "io.github.mlava/agent-ready-mcp",
5
5
  "description": "MCP server for Agent Ready — scan any URL for AI-readability against the Vercel Agent Readability Spec, the llmstxt.org standard, and agent-protocol manifests (MCP server cards, A2A, agents.json, agent-permissions.json, UCP, x402, NLWeb). 70 checks with per-check fix guidance.",
6
6
  "license": "MIT",