-
-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@webbrain/mcp-server",
"displayName": "WebBrain MCP Server",
"description": "Model Context Protocol server that lets any MCP client (Claude Code, Codex, Cursor, OpenClaw) delegate browser tasks to a running WebBrain extension — in the user's real, already-authenticated browser session.",
"version": "0.1.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"webbrain-mcp": "dist/index.js"
},
"license": "MIT",
"homepage": "https://webbrain.one",
"repository": {
"type": "git",
"url": "https://github.com/webbrain-one/webbrain.git",
"directory": "mcp-server"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "npm run build && node --test test/bridge.test.mjs test/catalog.test.mjs test/config.test.mjs test/runs-request-timeout.test.mjs test/runs-timeout.test.mjs test/stdio-shutdown.test.mjs",
"clean": "rm -rf dist",
"prepack": "npm run build",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"webbrain",
"browser-agent",
"browser-automation",
"claude-code",
"codex",
"cursor"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"ws": "^8.18.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/ws": "^8.5.10",
"typescript": "^5.5.0"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20.0.0"
}
}