agent-ready-mcp 0.1.0 → 0.1.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.
@@ -31238,16 +31238,23 @@ var getScanInputShape = {
31238
31238
  // src/server.ts
31239
31239
  var SERVER_INFO = {
31240
31240
  name: "agent-ready",
31241
- version: "0.1.0"
31241
+ version: "0.1.1"
31242
31242
  };
31243
31243
  function createMcpServer(config2) {
31244
31244
  const server = new McpServer(SERVER_INFO);
31245
+ const READ_ONLY_OPEN_WORLD = {
31246
+ readOnlyHint: true,
31247
+ destructiveHint: false,
31248
+ idempotentHint: true,
31249
+ openWorldHint: true
31250
+ };
31245
31251
  server.registerTool(
31246
31252
  "scan_site",
31247
31253
  {
31248
31254
  title: "Scan a site for AI agent readability",
31249
31255
  description: "Runs the agent-ready.dev scanner against a URL and returns structured results: Vercel score, llmstxt.org score, and per-check findings with remediation hints. Scans may take up to ~60s; if the local poll deadline elapses, the tool returns the scan id and asks you to poll with get_scan.",
31250
- inputSchema: scanSiteInputShape
31256
+ inputSchema: scanSiteInputShape,
31257
+ annotations: READ_ONLY_OPEN_WORLD
31251
31258
  },
31252
31259
  async (args) => {
31253
31260
  try {
@@ -31262,7 +31269,8 @@ function createMcpServer(config2) {
31262
31269
  {
31263
31270
  title: "Get a previous scan by id",
31264
31271
  description: "Fetches a completed or in-progress scan by its id. Only scans owned by the authenticated API key's user are returned.",
31265
- inputSchema: getScanInputShape
31272
+ inputSchema: getScanInputShape,
31273
+ annotations: READ_ONLY_OPEN_WORLD
31266
31274
  },
31267
31275
  async (args) => {
31268
31276
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-ready-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.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). 59 checks with per-check fix guidance.",
6
6
  "license": "MIT",