agent-ready-mcp 0.5.0 → 0.5.1

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/README.md CHANGED
@@ -130,27 +130,9 @@ npm run typecheck
130
130
 
131
131
  ## Releasing
132
132
 
133
- Two GitHub Actions handle CI and release publishing:
134
-
135
- - `.github/workflows/ci.yml` — runs typecheck, tests, and `npm run build` on every PR and push to `main`.
136
- - `.github/workflows/release.yml` — runs on every `v*` tag push. Publishes to npm (with Sigstore provenance) and to the [MCP registry](https://registry.modelcontextprotocol.io) via GitHub OIDC.
137
-
138
- To cut a release:
139
-
140
- ```bash
141
- # bump version in package.json, manifest.json, server.json, src/server.ts
142
- git commit -am "vX.Y.Z: ..."
143
- git tag vX.Y.Z
144
- git push && git push --tags
145
- ```
146
-
147
- The release workflow handles npm + MCP registry automatically. Smithery republish (for the `.mcpb` bundle) and the GitHub release with custom notes are still manual — both have custom-content friction that's not worth automating today.
148
-
149
- ### Required repository secret
150
-
151
- - `NPM_TOKEN` — npm automation token with publish access for `agent-ready-mcp`. Add at GitHub repo Settings → Secrets and variables → Actions.
152
-
153
- The MCP registry publish uses GitHub OIDC (no stored secret required).
133
+ See [RELEASE.md](RELEASE.md). It is the source of truth for version surfaces,
134
+ local checks, tag pushing, the GitHub Actions release workflow, and the manual
135
+ post-release steps.
154
136
 
155
137
  ## License
156
138
 
@@ -31418,7 +31418,7 @@ Agent Ready's checks map to the specifications below. Each entry links to the ca
31418
31418
  - **NLWeb** \u2014 An open natural-language query protocol: a site exposes POST /ask returning Schema.org-typed JSON. Detection is heuristic and informational. Canonical: <https://nlweb.ai/docs/specification> Checks: C12.
31419
31419
  - **API Catalog (RFC 9727)** \u2014 A /.well-known/api-catalog linkset advertising a site's APIs so agents can enumerate them from one well-known entry point. Canonical: <https://www.rfc-editor.org/info/rfc9727> Checks: C13.
31420
31420
  - **Web Bot Auth** _(pre-standard)_ \u2014 An HTTP message-signatures directory at /.well-known/http-message-signatures-directory letting well-behaved bots prove their identity. IETF draft. Canonical: <https://datatracker.ietf.org/doc/draft-meunier-web-bot-auth-architecture/> Checks: C14.
31421
- - **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> Checks: C15.
31421
+ - **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> Checks: C15.
31422
31422
  - **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
31423
  - **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.
31424
31424
  `;
@@ -31734,7 +31734,7 @@ var validateStructuredDataInputShape = {
31734
31734
  // src/server.ts
31735
31735
  var SERVER_INFO = {
31736
31736
  name: "agent-ready",
31737
- version: "0.5.0"
31737
+ version: "0.5.1"
31738
31738
  };
31739
31739
  function createMcpServer(config2) {
31740
31740
  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.0",
3
+ "version": "0.5.1",
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",
@@ -47,7 +47,7 @@
47
47
  "test": "vitest run",
48
48
  "test:coverage": "vitest run --coverage",
49
49
  "typecheck": "tsc --noEmit",
50
- "version": "node scripts/sync-server-version.mjs && git add server.json",
50
+ "version": "node scripts/sync-server-version.mjs && git add server.json manifest.json src/server.ts",
51
51
  "prepublishOnly": "npm run build"
52
52
  },
53
53
  "dependencies": {