agent-ready-mcp 0.6.0 → 0.6.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/dist/mcp-server.mjs +7 -2
- package/package.json +1 -1
package/dist/mcp-server.mjs
CHANGED
|
@@ -23101,7 +23101,12 @@ async function postAnonScan(config2, url2) {
|
|
|
23101
23101
|
method: "POST",
|
|
23102
23102
|
headers: {
|
|
23103
23103
|
"Content-Type": "application/json",
|
|
23104
|
-
Accept: "application/json"
|
|
23104
|
+
Accept: "application/json",
|
|
23105
|
+
// Funnel attribution: /api/scan is shared with the web app, so without
|
|
23106
|
+
// this header keyless npm-MCP scans are recorded as source=`web`. The
|
|
23107
|
+
// server tags them `mcp-npm` (distinct from `mcp`, the hosted keyed
|
|
23108
|
+
// endpoint). Read only on /api/scan; ignored elsewhere.
|
|
23109
|
+
"X-Agent-Ready-Client": "mcp-npm"
|
|
23105
23110
|
},
|
|
23106
23111
|
body: JSON.stringify({ url: url2 }),
|
|
23107
23112
|
signal: AbortSignal.timeout(config2.scanTimeoutMs)
|
|
@@ -31828,7 +31833,7 @@ var validateStructuredDataInputShape = {
|
|
|
31828
31833
|
// src/server.ts
|
|
31829
31834
|
var SERVER_INFO = {
|
|
31830
31835
|
name: "agent-ready",
|
|
31831
|
-
version: "0.6.
|
|
31836
|
+
version: "0.6.1"
|
|
31832
31837
|
};
|
|
31833
31838
|
function createMcpServer(config2) {
|
|
31834
31839
|
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.6.
|
|
3
|
+
"version": "0.6.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",
|