agent-ready-mcp 0.1.1 → 0.1.2
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 +24 -0
- package/dist/mcp-server.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -124,6 +124,30 @@ npm test
|
|
|
124
124
|
npm run typecheck
|
|
125
125
|
```
|
|
126
126
|
|
|
127
|
+
## Releasing
|
|
128
|
+
|
|
129
|
+
Two GitHub Actions handle CI and release publishing:
|
|
130
|
+
|
|
131
|
+
- `.github/workflows/ci.yml` — runs typecheck, tests, and `npm run build` on every PR and push to `main`.
|
|
132
|
+
- `.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.
|
|
133
|
+
|
|
134
|
+
To cut a release:
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
# bump version in package.json, manifest.json, server.json, src/server.ts
|
|
138
|
+
git commit -am "vX.Y.Z: ..."
|
|
139
|
+
git tag vX.Y.Z
|
|
140
|
+
git push && git push --tags
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
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.
|
|
144
|
+
|
|
145
|
+
### Required repository secret
|
|
146
|
+
|
|
147
|
+
- `NPM_TOKEN` — npm automation token with publish access for `agent-ready-mcp`. Add at GitHub repo Settings → Secrets and variables → Actions.
|
|
148
|
+
|
|
149
|
+
The MCP registry publish uses GitHub OIDC (no stored secret required).
|
|
150
|
+
|
|
127
151
|
## License
|
|
128
152
|
|
|
129
153
|
MIT — see [LICENSE](LICENSE).
|
package/dist/mcp-server.mjs
CHANGED
|
@@ -31238,7 +31238,7 @@ var getScanInputShape = {
|
|
|
31238
31238
|
// src/server.ts
|
|
31239
31239
|
var SERVER_INFO = {
|
|
31240
31240
|
name: "agent-ready",
|
|
31241
|
-
version: "0.1.
|
|
31241
|
+
version: "0.1.2"
|
|
31242
31242
|
};
|
|
31243
31243
|
function createMcpServer(config2) {
|
|
31244
31244
|
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.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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). 59 checks with per-check fix guidance.",
|
|
6
6
|
"license": "MIT",
|