@qulib/mcp 0.2.0 → 0.2.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/README.md +12 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -40,6 +40,18 @@ Add this under `mcpServers` in `claude_desktop_config.json` (Claude Desktop) or
|
|
|
40
40
|
}
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
+
## One-time browser setup
|
|
44
|
+
|
|
45
|
+
qulib uses Playwright under the hood. After your MCP host first runs the qulib server, you'll need to install Chromium:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
npx playwright install chromium
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
This is a one-time step. You'll only need to do it again if Playwright's browser version is bumped in a future qulib release.
|
|
52
|
+
|
|
53
|
+
If you skip this step, the first tool call will return a clear error telling you to run the command.
|
|
54
|
+
|
|
43
55
|
## Example usage
|
|
44
56
|
|
|
45
57
|
Ask Claude:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qulib/mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.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.2.
|
|
34
|
+
"@qulib/core": "0.2.1",
|
|
35
35
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
36
36
|
"zod": "^3.23.0"
|
|
37
37
|
},
|