agent-ready-mcp 0.4.2 → 0.4.3

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.
@@ -31634,16 +31634,18 @@ var getScanInputShape = {
31634
31634
  };
31635
31635
  var askInputShape = {
31636
31636
  q: external_exports.string().min(1).max(2e3).describe(
31637
- "Natural-language question about Agent Ready's scoring methodology, its check registry, or the specs it validates."
31637
+ "Natural-language question about Agent Ready's scoring methodology, its check registry, the specs it validates, or its content library (explainers, comparisons, how-to guides, glossary)."
31638
+ ),
31639
+ itemType: external_exports.enum(["methodology", "checks", "specs", "llms-txt", "check", "page", "any"]).optional().describe(
31640
+ "Optional filter narrowing the search to one corpus type ('page' = explainers/guides/glossary)."
31638
31641
  ),
31639
- itemType: external_exports.enum(["methodology", "checks", "specs", "llms-txt", "check", "any"]).optional().describe("Optional filter narrowing the search to one corpus type."),
31640
31642
  mode: external_exports.enum(["list", "summarize"]).optional().describe("'summarize' adds an extractive summary over the top results.")
31641
31643
  };
31642
31644
 
31643
31645
  // src/server.ts
31644
31646
  var SERVER_INFO = {
31645
31647
  name: "agent-ready",
31646
- version: "0.4.0"
31648
+ version: "0.4.2"
31647
31649
  };
31648
31650
  function createMcpServer(config2) {
31649
31651
  const server = new McpServer(SERVER_INFO);
@@ -31691,7 +31693,7 @@ function createMcpServer(config2) {
31691
31693
  "ask",
31692
31694
  {
31693
31695
  title: "Ask Agent Ready in natural language",
31694
- description: "Natural-language search (NLWeb /ask) over Agent Ready's own content \u2014 scoring methodology, the check registry, and the specs it validates. Public, no API key required. Returns Schema.org-typed result objects; optional itemType narrows to a corpus type and mode 'summarize' adds an extractive summary.",
31696
+ description: "Natural-language search (NLWeb /ask) over Agent Ready's own content \u2014 scoring methodology, the check registry, the specs it validates, and the content library (explainers, comparisons, how-to guides, glossary). Public, no API key required. Returns Schema.org-typed result objects; optional itemType narrows to a corpus type and mode 'summarize' adds an extractive summary.",
31695
31697
  inputSchema: askInputShape,
31696
31698
  outputSchema: askOutputShape,
31697
31699
  annotations: READ_ONLY_OPEN_WORLD
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-ready-mcp",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
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). 68 checks with per-check fix guidance.",
6
6
  "license": "MIT",