-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "real-browser-mcp",
"mcpName": "io.github.ofershap/real-browser",
"version": "1.3.0",
"description": "MCP + Chrome extension that connects AI agents to your real logged-in Chrome (SSO, cookies, open tabs). Not headless. Not a cloud agentic browser.",
"type": "module",
"bin": {
"real-browser-mcp": "mcp-server/dist/index.js"
},
"main": "mcp-server/dist/index.js",
"scripts": {
"build": "tsc -p mcp-server/tsconfig.json",
"dev": "tsc -p mcp-server/tsconfig.json --watch",
"start": "node mcp-server/dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p mcp-server/tsconfig.json --noEmit",
"lint": "eslint mcp-server/src/",
"format": "prettier --write 'mcp-server/src/**/*.ts' 'tests/**/*.ts'",
"setup:cursor": "node agent-config/setup.mjs cursor",
"setup:claude": "node agent-config/setup.mjs claude",
"context:lint": "ai-context-kit lint",
"context:measure": "ai-context-kit measure"
},
"keywords": [
"mcp",
"mcp-server",
"agentic-browser",
"browser",
"browser-automation",
"browser-control",
"browser-use",
"chrome",
"chrome-extension",
"logged-in-browser",
"sso",
"web-automation",
"real-browser",
"live-browser",
"model-context-protocol",
"ai-agent",
"ai-coding",
"cursor",
"claude",
"windsurf",
"playwright-alternative",
"chrome-devtools-mcp-alternative"
],
"author": "Ofer Shapira",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ofershap/real-browser-mcp.git"
},
"homepage": "https://github.com/ofershap/real-browser-mcp",
"bugs": {
"url": "https://github.com/ofershap/real-browser-mcp/issues"
},
"files": [
"mcp-server/dist/",
"extension/",
"agent-config/",
"LICENSE",
"README.md",
"plugin.json",
"mcp.json",
"skills",
"llms.txt"
],
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"ws": "^8.21.3",
"zod": "^4.6.2"
},
"devDependencies": {
"@types/node": "^26.5.1",
"@types/ws": "^8.5.10",
"ai-context-kit": "^0.1.1",
"typescript": "^7.0.2",
"vitest": "^5.0.0"
}
}