@qulib/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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -53,7 +53,7 @@ Claude will pass auth credentials to the tool; Qulib signs in, then scans.
53
53
 
54
54
  ## Known limitations
55
55
 
56
- In **v0.1.0**, link discovery and route expansion from the entry URL are **shallow** compared to full multi-site crawling. Broader multi-page coverage is planned for **0.1.1**; treat low page counts in the output as a signal that the scan may not represent the whole app yet.
56
+ Qulib discovers routes by following **same-site** links from pages it visits; it is not a full multi-site crawler (no sitemap-first mode, no unbounded domain expansion). Treat the route list as a sample of what was reachable within `maxPagesToScan` and `maxDepth`.
57
57
 
58
58
  ## Repository
59
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qulib/mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for Qulib — AI-callable QA gap analysis",
5
5
  "license": "MIT",
6
6
  "author": "Tapesh Nagarwal",
@@ -31,7 +31,7 @@
31
31
  "dev": "tsx src/index.ts"
32
32
  },
33
33
  "dependencies": {
34
- "@qulib/core": "0.1.0",
34
+ "@qulib/core": "0.1.1",
35
35
  "@modelcontextprotocol/sdk": "^1.0.0",
36
36
  "zod": "^3.23.0"
37
37
  },