weboperator-mcp 1.5.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/LICENSE +21 -0
- package/README.md +51 -0
- package/SKILL.md +115 -0
- package/agent-client.js +56 -0
- package/bridge.js +716 -0
- package/hermes-config.json +14 -0
- package/install.sh +61 -0
- package/mcp-server.js +608 -0
- package/native-host-template.json +10 -0
- package/native-host.sh +9 -0
- package/openclaw-tools.json +23 -0
- package/package.json +44 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openclaw-weboperator",
|
|
3
|
+
"version": "1.4.0",
|
|
4
|
+
"description": "OpenClaw agent toolset configuration for WebOperator",
|
|
5
|
+
"gateway": {
|
|
6
|
+
"url": "http://127.0.0.1:8765/mcp",
|
|
7
|
+
"headers": {
|
|
8
|
+
"x-weboperator-token": "${WEBOPERATOR_API_TOKEN:-}"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"tools": [
|
|
12
|
+
"browser_snapshot",
|
|
13
|
+
"browser_navigate",
|
|
14
|
+
"browser_click",
|
|
15
|
+
"browser_type",
|
|
16
|
+
"browser_press",
|
|
17
|
+
"browser_scroll",
|
|
18
|
+
"browser_screenshot",
|
|
19
|
+
"browser_extract",
|
|
20
|
+
"browser_solve_captcha",
|
|
21
|
+
"weboperator_execute_goal"
|
|
22
|
+
]
|
|
23
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "weboperator-mcp",
|
|
3
|
+
"version": "1.5.0",
|
|
4
|
+
"mcpName": "io.github.kazkozdev/weboperator",
|
|
5
|
+
"description": "Hands your live Chrome tab to any MCP client — snapshot, navigate, click, type, extract.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"mcp",
|
|
8
|
+
"modelcontextprotocol",
|
|
9
|
+
"browser",
|
|
10
|
+
"chrome",
|
|
11
|
+
"browser-automation",
|
|
12
|
+
"web-agent",
|
|
13
|
+
"accessibility-tree"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/KazKozDev/WebOperator#readme",
|
|
16
|
+
"bugs": "https://github.com/KazKozDev/WebOperator/issues",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/KazKozDev/WebOperator.git",
|
|
20
|
+
"directory": "weboperator-bridge"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"author": "Artem KK",
|
|
24
|
+
"type": "commonjs",
|
|
25
|
+
"bin": {
|
|
26
|
+
"weboperator-mcp": "mcp-server.js",
|
|
27
|
+
"weboperator-bridge": "bridge.js",
|
|
28
|
+
"weboperator-bridge-install": "install.sh"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"mcp-server.js",
|
|
32
|
+
"bridge.js",
|
|
33
|
+
"agent-client.js",
|
|
34
|
+
"native-host.sh",
|
|
35
|
+
"native-host-template.json",
|
|
36
|
+
"install.sh",
|
|
37
|
+
"hermes-config.json",
|
|
38
|
+
"openclaw-tools.json",
|
|
39
|
+
"SKILL.md"
|
|
40
|
+
],
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=18"
|
|
43
|
+
}
|
|
44
|
+
}
|