agent-ready-mcp 0.7.4 → 0.7.6

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 +16 -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 25 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
+ > 72 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
+ > 72 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 (25)
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,8 @@ 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 |
31369
+ | P25 | AI snippet directives |
31368
31370
 
31369
31371
  ## llms.txt checks (10)
31370
31372
 
@@ -31414,7 +31416,7 @@ Discover-then-validate: when the relevant well-known endpoint returns 404, the c
31414
31416
 
31415
31417
  ## Accessibility checks (23)
31416
31418
 
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.
31419
+ 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 72 checks above: accessibility is WCAG, not the Vercel Agent Readability Spec, so it never moves the Vercel score.
31418
31420
 
31419
31421
  | ID | Check |
31420
31422
  |---|---|
@@ -31440,10 +31442,11 @@ Run over the homepage DOM (v1). WCAG-grounded accessibility-tree signals \u2014
31440
31442
  | A20 | SVG images have a text alternative |
31441
31443
  | A21 | Media declares a captions track |
31442
31444
  | A22 | List structure is well-formed |
31443
- | A23 | ARIA roles and attributes are valid |`;
31445
+ | A23 | ARIA roles and attributes are valid |
31446
+ `;
31444
31447
  var LLMS_TXT = `# Agent Ready
31445
31448
 
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.
31449
+ > 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 72 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
31450
 
31448
31451
  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
31452
 
@@ -31477,7 +31480,7 @@ Agent Ready's checks map to the specifications below. Each entry links to the ca
31477
31480
  ## Readability
31478
31481
 
31479
31482
  - **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), 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. Canonical: <https://llmstxt.org> Checks: S1\u2013S4, L1\u2013L10.
31483
+ - **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
31484
 
31482
31485
  ## Agent protocols
31483
31486
 
@@ -31508,7 +31511,8 @@ Agent Ready's checks map to the specifications below. Each entry links to the ca
31508
31511
 
31509
31512
  ## Accessibility
31510
31513
 
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.`;
31514
+ - **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.
31515
+ `;
31512
31516
 
31513
31517
  // src/resources.ts
31514
31518
  function registerResources(server) {
@@ -31517,7 +31521,7 @@ function registerResources(server) {
31517
31521
  "agent-ready://methodology",
31518
31522
  {
31519
31523
  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.",
31524
+ description: "How Agent Ready computes the 0\u2013100 readability score and the llms.txt sub-score. Covers the 72 checks across four categories, rating bands, weighting, and JS-rendering handling.",
31521
31525
  mimeType: "text/markdown"
31522
31526
  },
31523
31527
  async () => ({
@@ -31535,7 +31539,7 @@ function registerResources(server) {
31535
31539
  "agent-ready://checks",
31536
31540
  {
31537
31541
  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.",
31542
+ description: "Reference table of all 72 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
31543
  mimeType: "text/markdown"
31540
31544
  },
31541
31545
  async () => ({
@@ -31862,7 +31866,7 @@ var validateStructuredDataInputShape = {
31862
31866
  // src/server.ts
31863
31867
  var SERVER_INFO = {
31864
31868
  name: "agent-ready",
31865
- version: "0.7.4"
31869
+ version: "0.7.6"
31866
31870
  };
31867
31871
  function createMcpServer(config2) {
31868
31872
  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.4",
3
+ "version": "0.7.6",
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",