agent-ready-mcp 0.5.3 → 0.5.4
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.
- package/dist/mcp-server.mjs +23 -3
- package/package.json +1 -1
package/dist/mcp-server.mjs
CHANGED
|
@@ -31357,10 +31357,26 @@ Discover-then-validate: when the relevant well-known endpoint returns 404, the c
|
|
|
31357
31357
|
| C19 | MPP challenge params |
|
|
31358
31358
|
| C20 | AP2 payment protocol support |
|
|
31359
31359
|
| C21 | ACP profile (/.well-known/acp.json) |
|
|
31360
|
+
|
|
31361
|
+
## Accessibility checks (9)
|
|
31362
|
+
|
|
31363
|
+
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 69 checks above: accessibility is WCAG, not the Vercel Agent Readability Spec, so it never moves the Vercel score.
|
|
31364
|
+
|
|
31365
|
+
| ID | Check |
|
|
31366
|
+
|---|---|
|
|
31367
|
+
| A1 | Images have text alternatives |
|
|
31368
|
+
| A2 | Form controls have labels |
|
|
31369
|
+
| A3 | Controls have accessible names |
|
|
31370
|
+
| A4 | Media declares explicit dimensions |
|
|
31371
|
+
| A5 | ARIA name references resolve |
|
|
31372
|
+
| A6 | Iframes have an accessible name |
|
|
31373
|
+
| A7 | Heading hierarchy is well-formed |
|
|
31374
|
+
| A8 | No positive tabindex |
|
|
31375
|
+
| A9 | Pinch-zoom is not disabled |
|
|
31360
31376
|
`;
|
|
31361
31377
|
var LLMS_TXT = `# Agent Ready
|
|
31362
31378
|
|
|
31363
|
-
> 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 69 checks and provides actionable fix guidance for every failing check.
|
|
31379
|
+
> 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 69 checks \u2014 plus a separate accessibility sub-score from 9 WCAG 2.2 / layout-stability checks \u2014 and provides actionable fix guidance for every failing check.
|
|
31364
31380
|
|
|
31365
31381
|
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.
|
|
31366
31382
|
|
|
@@ -31421,6 +31437,10 @@ Agent Ready's checks map to the specifications below. Each entry links to the ca
|
|
|
31421
31437
|
- **Agent Skills Discovery** _(pre-standard)_ \u2014 A /.well-known/agent-skills/index.json manifest advertising installable agent skills. Pre-standard (Cloudflare RFC v0.2.0). Canonical: <https://github.com/cloudflare/agent-skills-discovery-rfc/blob/main/README.md> Checks: C15.
|
|
31422
31438
|
- **Content parity (anti-cloaking)** _(behavioural)_ \u2014 Not a published spec \u2014 a behavioural check comparing the AI-bot response to the baseline to detect cloaking (serving agents different content than humans). Canonical: _none published_ Checks: C16.
|
|
31423
31439
|
- **Agent-driven UI (A2UI)** _(pre-standard)_ \u2014 MCP-Apps / OpenAI Apps SDK UI surfaces declared on an MCP Server Card, letting agents render interactive widgets inline. Emerging. Canonical: <https://modelcontextprotocol.io> Checks: C17.
|
|
31440
|
+
|
|
31441
|
+
## Accessibility
|
|
31442
|
+
|
|
31443
|
+
- **WCAG 2.2 + layout stability** \u2014 The accessibility tree \u2014 image text alternatives, form labels, control names, resolved ARIA references, named iframes, a clean heading outline \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\u2013A9.
|
|
31424
31444
|
`;
|
|
31425
31445
|
|
|
31426
31446
|
// src/resources.ts
|
|
@@ -31448,7 +31468,7 @@ function registerResources(server) {
|
|
|
31448
31468
|
"agent-ready://checks",
|
|
31449
31469
|
{
|
|
31450
31470
|
title: "Check registry",
|
|
31451
|
-
description: "Reference table of all 69 checks Agent Ready runs, grouped by category (site, page, llms.txt, protocol). Each row pairs the stable check ID (e.g. P11, S15, L9, C3) with its human-readable name. Use this to identify a check by id when interpreting scan results.",
|
|
31471
|
+
description: "Reference table of all 69 checks Agent Ready runs, grouped by category (site, page, llms.txt, protocol), plus the 9-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.",
|
|
31452
31472
|
mimeType: "text/markdown"
|
|
31453
31473
|
},
|
|
31454
31474
|
async () => ({
|
|
@@ -31734,7 +31754,7 @@ var validateStructuredDataInputShape = {
|
|
|
31734
31754
|
// src/server.ts
|
|
31735
31755
|
var SERVER_INFO = {
|
|
31736
31756
|
name: "agent-ready",
|
|
31737
|
-
version: "0.5.
|
|
31757
|
+
version: "0.5.4"
|
|
31738
31758
|
};
|
|
31739
31759
|
function createMcpServer(config2) {
|
|
31740
31760
|
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.5.
|
|
3
|
+
"version": "0.5.4",
|
|
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). 69 checks with per-check fix guidance.",
|
|
6
6
|
"license": "MIT",
|