@humanjs/mcp 0.2.0 → 0.3.0
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 +2 -0
- package/dist/index.cjs +131 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +131 -1
- package/dist/index.js.map +1 -1
- package/package.json +10 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@humanjs/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Model Context Protocol server for HumanJS — drive a Playwright browser with humanized motion from Claude Desktop, Claude Code, Cursor, Codex, and any other MCP client.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"humanjs",
|
|
@@ -11,8 +11,12 @@
|
|
|
11
11
|
"cursor",
|
|
12
12
|
"codex",
|
|
13
13
|
"ai-agent",
|
|
14
|
+
"ai-agents",
|
|
14
15
|
"browser-automation",
|
|
15
|
-
"humanize"
|
|
16
|
+
"humanize",
|
|
17
|
+
"mcp-server",
|
|
18
|
+
"claude-code",
|
|
19
|
+
"llm"
|
|
16
20
|
],
|
|
17
21
|
"author": "Gonzalo Muñoz <toti@eventurex.com.ar>",
|
|
18
22
|
"license": "MIT",
|
|
@@ -56,9 +60,9 @@
|
|
|
56
60
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
57
61
|
"playwright": "^1.60.0",
|
|
58
62
|
"zod": "^3.23.0",
|
|
59
|
-
"@humanjs/core": "0.
|
|
60
|
-
"@humanjs/playwright": "0.
|
|
61
|
-
"@humanjs/recorder": "0.3.
|
|
63
|
+
"@humanjs/core": "0.7.0",
|
|
64
|
+
"@humanjs/playwright": "0.8.0",
|
|
65
|
+
"@humanjs/recorder": "0.3.1"
|
|
62
66
|
},
|
|
63
67
|
"publishConfig": {
|
|
64
68
|
"access": "public"
|
|
@@ -70,6 +74,7 @@
|
|
|
70
74
|
"test:watch": "vitest",
|
|
71
75
|
"typecheck": "tsc --noEmit",
|
|
72
76
|
"lint": "biome check .",
|
|
77
|
+
"check:exports": "publint --strict",
|
|
73
78
|
"clean": "rm -rf dist .turbo"
|
|
74
79
|
}
|
|
75
80
|
}
|