browser-debug-mcp-bridge 1.1.0 → 1.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/apps/mcp-server/package.json +28 -28
- package/package.json +49 -49
package/README.md
CHANGED
|
@@ -35,6 +35,8 @@ Quick npm MCP launch (marketplace-style, after publish):
|
|
|
35
35
|
npx -y browser-debug-mcp-bridge
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
+
Note: npm mode starts the MCP server runtime. The Chrome extension still needs to be built/loaded separately (see "Load the extension").
|
|
39
|
+
|
|
38
40
|
GitHub fallback launch (if npm package is not available yet):
|
|
39
41
|
|
|
40
42
|
```bash
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "mcp-server",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"type": "module",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"build": "tsc -p tsconfig.app.json",
|
|
7
|
-
"serve": "tsx src/main.ts",
|
|
8
|
-
"serve:mcp": "tsx src/mcp-bridge.ts",
|
|
9
|
-
"dev": "tsx watch src/main.ts",
|
|
10
|
-
"test": "vitest run --config vitest.config.ts",
|
|
11
|
-
"lint": "tsc --noEmit -p tsconfig.app.json"
|
|
12
|
-
},
|
|
13
|
-
"dependencies": {
|
|
14
|
-
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
15
|
-
"@types/ws": "^8.18.1",
|
|
16
|
-
"better-sqlite3": "^12.6.2",
|
|
17
|
-
"fastify": "^
|
|
18
|
-
"jszip": "^3.10.1",
|
|
19
|
-
"ws": "^8.19.0"
|
|
20
|
-
},
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"@types/better-sqlite3": "^7.6.13",
|
|
23
|
-
"@types/node": "^
|
|
24
|
-
"tsx": "^4.
|
|
25
|
-
"typescript": "^5.3
|
|
26
|
-
"vitest": "^
|
|
27
|
-
}
|
|
28
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp-server",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "tsc -p tsconfig.app.json",
|
|
7
|
+
"serve": "tsx src/main.ts",
|
|
8
|
+
"serve:mcp": "tsx src/mcp-bridge.ts",
|
|
9
|
+
"dev": "tsx watch src/main.ts",
|
|
10
|
+
"test": "vitest run --config vitest.config.ts",
|
|
11
|
+
"lint": "tsc --noEmit -p tsconfig.app.json"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
15
|
+
"@types/ws": "^8.18.1",
|
|
16
|
+
"better-sqlite3": "^12.6.2",
|
|
17
|
+
"fastify": "^5.7.4",
|
|
18
|
+
"jszip": "^3.10.1",
|
|
19
|
+
"ws": "^8.19.0"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
23
|
+
"@types/node": "^25.3.0",
|
|
24
|
+
"tsx": "^4.21.0",
|
|
25
|
+
"typescript": "^5.9.3",
|
|
26
|
+
"vitest": "^4.0.18"
|
|
27
|
+
}
|
|
28
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
2
|
"name": "browser-debug-mcp-bridge",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Chrome Extension + Node.js MCP server for browser debugging",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -17,24 +17,24 @@
|
|
|
17
17
|
"browser-debug-mcp-bridge": "scripts/mcp-start.cjs"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
|
-
"typecheck": "nx run-many -t lint --projects mcp-server,chrome-extension,shared,redaction,selectors,mcp-contracts",
|
|
21
|
-
"test": "nx run-many -t test",
|
|
22
|
-
"lint": "nx run-many -t lint",
|
|
23
|
-
"build": "nx run-many -t build",
|
|
24
|
-
"verify": "pnpm typecheck && pnpm lint && pnpm test && pnpm build && pnpm docs:ci && pnpm mcp:check-stdio-guard",
|
|
25
|
-
"serve": "nx serve mcp-server",
|
|
20
|
+
"typecheck": "nx run-many -t lint --projects mcp-server,chrome-extension,shared,redaction,selectors,mcp-contracts",
|
|
21
|
+
"test": "nx run-many -t test",
|
|
22
|
+
"lint": "nx run-many -t lint",
|
|
23
|
+
"build": "nx run-many -t build",
|
|
24
|
+
"verify": "pnpm typecheck && pnpm lint && pnpm test && pnpm build && pnpm docs:ci && pnpm mcp:check-stdio-guard",
|
|
25
|
+
"serve": "nx serve mcp-server",
|
|
26
26
|
"mcp:start": "node scripts/mcp-start.cjs",
|
|
27
27
|
"build:mcp-runtime": "pnpm -C apps/mcp-server build",
|
|
28
28
|
"prepack": "pnpm run build:mcp-runtime",
|
|
29
|
-
"docs:dev": "nx serve docs",
|
|
30
|
-
"docs:build": "nx build docs",
|
|
31
|
-
"docs:lint": "nx lint docs",
|
|
32
|
-
"docs:ci": "nx run docs:ci",
|
|
33
|
-
"gha:list": "act -l",
|
|
34
|
-
"gha:dry-run": "act -n",
|
|
35
|
-
"gha:ci": "act push -W .github/workflows/ci.yml -P ubuntu-latest=catthehacker/ubuntu:full-latest",
|
|
36
|
-
"gha:docs": "act push -W .github/workflows/docs-pages.yml -P ubuntu-latest=catthehacker/ubuntu:full-latest",
|
|
37
|
-
"gha:nightly": "act schedule -W .github/workflows/nightly-health.yml -P ubuntu-latest=catthehacker/ubuntu:full-latest",
|
|
29
|
+
"docs:dev": "nx serve docs",
|
|
30
|
+
"docs:build": "nx build docs",
|
|
31
|
+
"docs:lint": "nx lint docs",
|
|
32
|
+
"docs:ci": "nx run docs:ci",
|
|
33
|
+
"gha:list": "act -l",
|
|
34
|
+
"gha:dry-run": "act -n",
|
|
35
|
+
"gha:ci": "act push -W .github/workflows/ci.yml -P ubuntu-latest=catthehacker/ubuntu:full-latest",
|
|
36
|
+
"gha:docs": "act push -W .github/workflows/docs-pages.yml -P ubuntu-latest=catthehacker/ubuntu:full-latest",
|
|
37
|
+
"gha:nightly": "act schedule -W .github/workflows/nightly-health.yml -P ubuntu-latest=catthehacker/ubuntu:full-latest",
|
|
38
38
|
"gha:release": "act workflow_dispatch -W .github/workflows/release.yml -P ubuntu-latest=catthehacker/ubuntu:full-latest",
|
|
39
39
|
"gha:release-please": "act workflow_dispatch -W .github/workflows/release-please.yml -P ubuntu-latest=catthehacker/ubuntu:full-latest",
|
|
40
40
|
"gha:dependency-update": "act workflow_dispatch -W .github/workflows/dependency-update.yml -P ubuntu-latest=catthehacker/ubuntu:full-latest",
|
|
@@ -42,46 +42,46 @@
|
|
|
42
42
|
"release:tag:dry": "node tools/release/create-tag.mjs --dry-run --yes",
|
|
43
43
|
"release:tag:yes": "node tools/release/create-tag.mjs --yes",
|
|
44
44
|
"mcp:print-config": "node tools/mcp/print-client-config.mjs",
|
|
45
|
-
"mcp:check-stdio-guard": "node tools/mcp/check-stdio-guard.mjs",
|
|
46
|
-
"hooks:install": "git config core.hooksPath .githooks && git config commit.template .gitmessage.txt"
|
|
47
|
-
},
|
|
48
|
-
"keywords": [
|
|
49
|
-
"mcp",
|
|
50
|
-
"chrome-extension",
|
|
51
|
-
"debugging"
|
|
52
|
-
],
|
|
53
|
-
"author": "",
|
|
54
|
-
"license": "ISC",
|
|
45
|
+
"mcp:check-stdio-guard": "node tools/mcp/check-stdio-guard.mjs",
|
|
46
|
+
"hooks:install": "git config core.hooksPath .githooks && git config commit.template .gitmessage.txt"
|
|
47
|
+
},
|
|
48
|
+
"keywords": [
|
|
49
|
+
"mcp",
|
|
50
|
+
"chrome-extension",
|
|
51
|
+
"debugging"
|
|
52
|
+
],
|
|
53
|
+
"author": "",
|
|
54
|
+
"license": "ISC",
|
|
55
55
|
"packageManager": "pnpm@10.28.2",
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=20"
|
|
58
58
|
},
|
|
59
|
-
"devDependencies": {
|
|
60
|
-
"@
|
|
61
|
-
"@
|
|
62
|
-
"@
|
|
63
|
-
"@
|
|
64
|
-
"@
|
|
65
|
-
"@
|
|
66
|
-
"@
|
|
67
|
-
"@
|
|
68
|
-
"@
|
|
69
|
-
"@
|
|
70
|
-
"jsdom": "^28.
|
|
71
|
-
"markdownlint-cli2": "^0.
|
|
72
|
-
"nx": "^
|
|
73
|
-
"react": "^
|
|
74
|
-
"react-dom": "^
|
|
75
|
-
"typescript": "^5.3
|
|
76
|
-
"vite": "^7.3.1",
|
|
77
|
-
"vitest": "^
|
|
78
|
-
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@docusaurus/core": "^3.9.2",
|
|
61
|
+
"@docusaurus/preset-classic": "^3.9.2",
|
|
62
|
+
"@easyops-cn/docusaurus-search-local": "^0.55.0",
|
|
63
|
+
"@mdx-js/react": "^3.1.1",
|
|
64
|
+
"@nx/vite": "^22.5.2",
|
|
65
|
+
"@types/chrome": "^0.1.37",
|
|
66
|
+
"@types/node": "^25.3.0",
|
|
67
|
+
"@types/react": "^19.2.14",
|
|
68
|
+
"@types/react-dom": "^19.2.3",
|
|
69
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
70
|
+
"jsdom": "^28.1.0",
|
|
71
|
+
"markdownlint-cli2": "^0.21.0",
|
|
72
|
+
"nx": "^22.5.2",
|
|
73
|
+
"react": "^19.2.4",
|
|
74
|
+
"react-dom": "^19.2.4",
|
|
75
|
+
"typescript": "^5.9.3",
|
|
76
|
+
"vite": "^7.3.1",
|
|
77
|
+
"vitest": "^4.0.18"
|
|
78
|
+
},
|
|
79
79
|
"dependencies": {
|
|
80
80
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
81
81
|
"better-sqlite3": "^12.6.2",
|
|
82
|
-
"fastify": "^
|
|
82
|
+
"fastify": "^5.7.4",
|
|
83
83
|
"jszip": "^3.10.1",
|
|
84
|
-
"tsx": "^4.
|
|
84
|
+
"tsx": "^4.21.0",
|
|
85
85
|
"ws": "^8.19.0",
|
|
86
86
|
"zod": "^4.3.6"
|
|
87
87
|
}
|