-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "@onlyvisioncode/browser-mcp",
"version": "0.1.0",
"description": "MCP server for browser automation using Browser MCP",
"author": "Browser MCP",
"homepage": "https://www.onlyvision.ae",
"bugs": "https://github.com/OnlyVisionCode/browser-mcp/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/OnlyVisionCode/browser-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"browser",
"automation",
"browser-automation",
"mcp-server"
],
"license": "MIT",
"type": "module",
"bin": {
"mcp-server-browsermcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup src/index.ts --format esm && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsup src/index.ts --format esm --watch ",
"inspector": "CLIENT_PORT=9001 SERVER_PORT=9002 pnpx @modelcontextprotocol/inspector node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"commander": "^13.1.0",
"ws": "^8.18.1",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.24.3"
},
"devDependencies": {
"@types/ws": "^8.18.0",
"shx": "^0.3.4",
"tsup": "^8.4.0",
"typescript": "^5.6.2"
}
}