@mehmoodqureshi/chrome-mcp 0.6.3 → 0.6.4

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 CHANGED
@@ -4,17 +4,18 @@
4
4
  [![npm](https://img.shields.io/npm/v/%40mehmoodqureshi%2Fchrome-mcp?label=npm)](https://www.npmjs.com/package/@mehmoodqureshi/chrome-mcp)
5
5
  [![license](https://img.shields.io/npm/l/%40mehmoodqureshi%2Fchrome-mcp?label=license)](LICENSE)
6
6
 
7
- Drive a **real Chrome browser** from Claude (or any MCP host). One pluggable
8
- `Executor` interface, two backends:
9
-
10
- - **Extension (primary):** an MV3 extension drives your real Chrome — real
11
- logins, real cookies — via `chrome.scripting`/`chrome.tabs`. The CLI runs a
12
- localhost WebSocket server; the extension dials in.
13
- - **CDP fallback:** when no extension is paired, the CLI launches/attaches a
14
- Playwright-driven Chromium for scripted/headless use.
7
+ Drive a **real Chrome browser** from Claude (or any MCP host). An MV3 extension
8
+ drives your real Chrome — real logins, real cookies — via
9
+ `chrome.scripting`/`chrome.tabs`. The CLI runs a localhost WebSocket server; the
10
+ extension dials in.
15
11
 
16
12
  Distributed as an `npx` CLI (the MCP server) plus a load-unpacked extension.
17
13
 
14
+ > **This build is extension-only.** It never launches or attaches a Chromium of
15
+ > its own, so **the extension is required, not optional** — without it, no tool
16
+ > can run. The CDP flags (`--cdp-fallback`, `--no-cdp-fallback`, `--cdp-endpoint`,
17
+ > `--prefer`) are still accepted for back-compat but are **ignored**.
18
+
18
19
  > **Full design:** [`docs/BLUEPRINT.md`](docs/BLUEPRINT.md) — architecture, wire
19
20
  > protocol, the complete tool surface, the extension manifest, the security
20
21
  > model, and the phased build plan.
@@ -44,10 +45,8 @@ exactly what you need with `--allow-domain <glob>` (repeatable), `--enable-mutat
44
45
  > with `--uploads-dir <path>` to restrict uploads to files inside that directory
45
46
  > (`..` traversal is blocked) — strongly recommended for unattended use.
46
47
 
47
- **Drive only your real Chrome (recommended for the extension).** Add
48
- `--no-cdp-fallback` so the server never launches a separate Chromium, and
49
- `--persist-token` so the pairing token survives restarts — **pair once, never
50
- again**:
48
+ **Pair once, never again.** Add `--persist-token` so the pairing token survives
49
+ restarts:
51
50
 
52
51
  ```jsonc
53
52
  {
@@ -56,7 +55,7 @@ again**:
56
55
  "command": "npx",
57
56
  "args": ["-y", "@mehmoodqureshi/chrome-mcp",
58
57
  "--allow-domain", "example.com", "--enable-mutations",
59
- "--no-cdp-fallback", "--persist-token"]
58
+ "--persist-token"]
60
59
  }
61
60
  }
62
61
  }
@@ -68,14 +67,72 @@ token is stored 0600 at `~/.chrome-mcp/token` and reused; the extension's
68
67
  keepalive auto-reconnects with no manual step. `CHROME_MCP_TOKEN` pins the token
69
68
  explicitly (and is never written to disk).
70
69
 
71
- **2. Load the extension** (to drive your *real* Chrome): build it, then
72
- `chrome://extensions` → enable Developer mode → **Load unpacked** → select
73
- `extension-dist/`.
70
+ **2. Load the extension** **required**; the server can drive nothing without it.
71
+
72
+ `extension-dist/` ships prebuilt inside the npm package, so there is nothing to
73
+ compile. Install globally to get a stable path to it:
74
+
75
+ ```bash
76
+ npm install -g @mehmoodqureshi/chrome-mcp
77
+ npm root -g # → <root>; the extension is at <root>/@mehmoodqureshi/chrome-mcp/extension-dist
78
+ ```
79
+
80
+ Then `chrome://extensions` → enable **Developer mode** → **Load unpacked** →
81
+ select that `extension-dist/` directory. (Working from a git clone instead? Run
82
+ `npm install && npm run build:ext` first — `extension-dist/` is gitignored.)
74
83
 
75
84
  **3. Pair it:** run `npx chrome-mcp --print-pairing` to write the handshake and
76
85
  print its path, open the extension's **Options** page, and paste the `port` +
77
- `token` from `~/.chrome-mcp/handshake.json`. (Without the extension, the CLI
78
- falls back to a Playwright-driven Chromium automatically.)
86
+ `token` from `~/.chrome-mcp/handshake.json`.
87
+
88
+ ### Running more than one session
89
+
90
+ The extension dials exactly **one** bridge port, so only one chrome-mcp can drive
91
+ your Chrome at a time — but every MCP host session (each Claude tab/window)
92
+ spawns its own server. With a pinned `--port`, the newest session **takes the
93
+ port over**: it reads the owning pid from `handshake.json`, confirms that process
94
+ really is a chrome-mcp, and stops it. Newest tab wins; the older session's browser
95
+ tools go quiet until it reconnects. Nothing that isn't a verified chrome-mcp is
96
+ ever touched — a port held by some other program is reported, never killed.
97
+
98
+ Two servers can only run side by side if each has its own port **and** its own
99
+ paired extension — i.e. a separate Chrome profile running its own copy of the
100
+ extension, pointed at the other port (`--port 9223`). A single Chrome pairs to one
101
+ server at a time, so a second server with no extension of its own can drive
102
+ nothing.
103
+
104
+ One server can, however, serve **several browsers at once**: connections are
105
+ routed by profile key (`--profile <name>`, matching the profile set in the
106
+ extension's Options), so each paired Chrome gets its own routing slot.
107
+
108
+ Without `--port`, each server binds an ephemeral port (no conflict ever), but the
109
+ port changes every boot — so you'd re-pair the extension each time. Pin `--port`
110
+ plus `--persist-token` for a pair-once setup.
111
+
112
+ ### Windows
113
+
114
+ WSL2 is **not** required — native Windows works. One config change is, though:
115
+ on Windows `npx` is `npx.cmd`, a batch shim, and MCP hosts spawn the server
116
+ without a shell, which cannot execute a `.cmd`. So `"command": "npx"` fails to
117
+ start. Wrap it in `cmd /c`:
118
+
119
+ ```jsonc
120
+ {
121
+ "mcpServers": {
122
+ "chrome-mcp": {
123
+ "command": "cmd",
124
+ "args": ["/c", "npx", "-y", "@mehmoodqureshi/chrome-mcp",
125
+ "--allow-domain", "example.com", "--enable-mutations",
126
+ "--persist-token"]
127
+ }
128
+ }
129
+ }
130
+ ```
131
+
132
+ Or from Claude Code: `claude mcp add chrome-mcp -- cmd /c npx -y @mehmoodqureshi/chrome-mcp --allow-domain example.com`
133
+
134
+ Everything else is the same — load `extension-dist/` from `npm root -g` and pair
135
+ as above.
79
136
 
80
137
  The tools cover tabs, navigation, interaction (`click`/`type`/`press`/`hover`/
81
138
  `scroll`/`select_option`), reads (`get_text`/`get_html`/`screenshot`/`eval`/`wait_for`),
@@ -183,7 +240,11 @@ chrome-mcp --unsafe-all-domains # loud footgun
183
240
  ```
184
241
 
185
242
  The per-boot 256-bit token in `~/.chrome-mcp/handshake.json` (mode 0600) is the
186
- only trust boundary; it is never written to stdout/stderr.
243
+ only trust boundary; it is never written to stdout/stderr. On POSIX the mode is
244
+ re-verified after every write and the server **fails closed** if the file ends up
245
+ group/other-accessible. Windows has no such bits — `chmod` there only toggles the
246
+ read-only attribute — so the check is skipped and the token's confidentiality
247
+ rests on the per-user ACL of `%USERPROFILE%\.chrome-mcp`.
187
248
 
188
249
  ## Develop
189
250
 
@@ -7,6 +7,7 @@
7
7
  * that want a stable token so the extension never has to re-pair.
8
8
  * - Written atomically (tmp + rename) to `handshake.json` at mode 0600; the
9
9
  * mode is re-verified after write and we FAIL CLOSED if it can't be set.
10
+ * POSIX only — Windows has no group/other bits to check (see assertPrivate).
10
11
  * - Compared by hashing both sides to SHA-256 and `timingSafeEqual`-ing the
11
12
  * digests — no length precondition, no length leak.
12
13
  * - The token is NEVER written to stdout/stderr or any log (a test asserts it).
@@ -8,6 +8,7 @@
8
8
  * that want a stable token so the extension never has to re-pair.
9
9
  * - Written atomically (tmp + rename) to `handshake.json` at mode 0600; the
10
10
  * mode is re-verified after write and we FAIL CLOSED if it can't be set.
11
+ * POSIX only — Windows has no group/other bits to check (see assertPrivate).
11
12
  * - Compared by hashing both sides to SHA-256 and `timingSafeEqual`-ing the
12
13
  * digests — no length precondition, no length leak.
13
14
  * - The token is NEVER written to stdout/stderr or any log (a test asserts it).
@@ -32,6 +33,23 @@ const datadir_1 = require("./datadir");
32
33
  function generateToken() {
33
34
  return (0, node_crypto_1.randomBytes)(32).toString('base64url');
34
35
  }
36
+ /**
37
+ * Fail closed if `path` is group/other-accessible.
38
+ *
39
+ * No-op on Windows: NTFS ACLs don't map onto the POSIX mode bits, `chmodSync`
40
+ * there only toggles the read-only attribute, and `statSync` reports a synthetic
41
+ * 0o666 for any writable file. Enforcing the check would therefore throw on
42
+ * every well-formed file. The token's confidentiality on Windows rests on the
43
+ * per-user ACL of the profile directory holding it.
44
+ */
45
+ function assertPrivate(path, what) {
46
+ if (process.platform === 'win32')
47
+ return;
48
+ const mode = (0, node_fs_1.statSync)(path).mode & 0o777;
49
+ if ((mode & 0o077) !== 0) {
50
+ throw new Error(`${what} ${path} is group/other-accessible (mode ${mode.toString(8)}); refusing to expose the token`);
51
+ }
52
+ }
35
53
  /** Path of the optional persisted-token file (only used when persistence is on). */
36
54
  function tokenPath(dir) {
37
55
  return (0, node_path_1.join)(dir, 'token');
@@ -50,10 +68,7 @@ function readPersistedToken(dir) {
50
68
  catch {
51
69
  return null;
52
70
  }
53
- const mode = (0, node_fs_1.statSync)(path).mode & 0o777;
54
- if ((mode & 0o077) !== 0) {
55
- throw new Error(`persisted token ${path} is group/other-accessible (mode ${mode.toString(8)}); refusing to reuse it`);
56
- }
71
+ assertPrivate(path, 'persisted token');
57
72
  const token = raw.trim();
58
73
  return token.length > 0 ? token : null;
59
74
  }
@@ -65,10 +80,7 @@ function writePersistedToken(dir, token) {
65
80
  (0, node_fs_1.chmodSync)(tmp, 0o600);
66
81
  (0, node_fs_1.renameSync)(tmp, path);
67
82
  (0, node_fs_1.chmodSync)(path, 0o600);
68
- const mode = (0, node_fs_1.statSync)(path).mode & 0o777;
69
- if ((mode & 0o077) !== 0) {
70
- throw new Error(`persisted token ${path} is group/other-accessible (mode ${mode.toString(8)}); refusing to expose it`);
71
- }
83
+ assertPrivate(path, 'persisted token');
72
84
  return path;
73
85
  }
74
86
  /**
@@ -118,10 +130,7 @@ function writeHandshake(dir, fields) {
118
130
  (0, node_fs_1.chmodSync)(tmp, 0o600);
119
131
  (0, node_fs_1.renameSync)(tmp, path);
120
132
  (0, node_fs_1.chmodSync)(path, 0o600);
121
- const mode = (0, node_fs_1.statSync)(path).mode & 0o777;
122
- if ((mode & 0o077) !== 0) {
123
- throw new Error(`handshake file ${path} is group/other-accessible (mode ${mode.toString(8)}); refusing to expose the token`);
124
- }
133
+ assertPrivate(path, 'handshake file');
125
134
  return path;
126
135
  }
127
136
  function readHandshake(dir) {
@@ -0,0 +1,32 @@
1
+ /**
2
+ * src/bridge/evict.ts — take a pinned port back from a stale chrome-mcp.
3
+ *
4
+ * The extension dials exactly ONE bridge port, so only one server can own a
5
+ * given Chrome at a time. But every MCP host session spawns its own chrome-mcp
6
+ * child, so a second session (another Claude tab/window) racing for a pinned
7
+ * `--port` would otherwise just fail with EADDRINUSE and force the user to kill
8
+ * the old process by hand. Newest-session-wins: we do that kill for them.
9
+ *
10
+ * The safety bar is high, because a pid can be recycled onto an unrelated
11
+ * process. We evict ONLY when every check agrees:
12
+ * - the handshake names that port (so it describes *this* listener), and
13
+ * - the pid is not us, and
14
+ * - the pid is alive, and
15
+ * - its command line mentions chrome-mcp.
16
+ * If any check fails we leave the process alone and let the caller surface the
17
+ * plain-English port-busy error instead. Refusing to evict is always safe; a
18
+ * wrong kill is not.
19
+ */
20
+ /** Does this command line belong to a chrome-mcp server? */
21
+ export declare function looksLikeChromeMcp(cmdline: string): boolean;
22
+ export interface EvictDeps {
23
+ /** Injectable for tests; defaults to the real probes. */
24
+ isAlive?: (pid: number) => boolean;
25
+ commandLine?: (pid: number) => string | null;
26
+ kill?: (pid: number, signal: NodeJS.Signals) => void;
27
+ }
28
+ /**
29
+ * Try to free `port` by terminating the chrome-mcp that owns it.
30
+ * Returns true only if an owner was found, killed, and confirmed gone.
31
+ */
32
+ export declare function evictPortOwner(dataDir: string, port: number, log: (message: string) => void, deps?: EvictDeps): Promise<boolean>;
@@ -0,0 +1,135 @@
1
+ "use strict";
2
+ /**
3
+ * src/bridge/evict.ts — take a pinned port back from a stale chrome-mcp.
4
+ *
5
+ * The extension dials exactly ONE bridge port, so only one server can own a
6
+ * given Chrome at a time. But every MCP host session spawns its own chrome-mcp
7
+ * child, so a second session (another Claude tab/window) racing for a pinned
8
+ * `--port` would otherwise just fail with EADDRINUSE and force the user to kill
9
+ * the old process by hand. Newest-session-wins: we do that kill for them.
10
+ *
11
+ * The safety bar is high, because a pid can be recycled onto an unrelated
12
+ * process. We evict ONLY when every check agrees:
13
+ * - the handshake names that port (so it describes *this* listener), and
14
+ * - the pid is not us, and
15
+ * - the pid is alive, and
16
+ * - its command line mentions chrome-mcp.
17
+ * If any check fails we leave the process alone and let the caller surface the
18
+ * plain-English port-busy error instead. Refusing to evict is always safe; a
19
+ * wrong kill is not.
20
+ */
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.looksLikeChromeMcp = looksLikeChromeMcp;
23
+ exports.evictPortOwner = evictPortOwner;
24
+ const node_child_process_1 = require("node:child_process");
25
+ const auth_1 = require("./auth");
26
+ /** How long to let a SIGTERM'd owner exit before escalating to SIGKILL. */
27
+ const EXIT_WAIT_MS = 3_000;
28
+ const POLL_MS = 100;
29
+ const delay = (ms) => new Promise((r) => setTimeout(r, ms));
30
+ /** Whether `pid` exists. Signal 0 checks liveness without delivering anything. */
31
+ function isAlive(pid) {
32
+ try {
33
+ process.kill(pid, 0);
34
+ return true;
35
+ }
36
+ catch (err) {
37
+ // EPERM means it exists but belongs to another user — alive, just not ours.
38
+ return err?.code === 'EPERM';
39
+ }
40
+ }
41
+ /**
42
+ * Full command line of `pid`, or null if it can't be read.
43
+ *
44
+ * Windows needs PowerShell/CIM: `tasklist` reports only the image name
45
+ * ("node.exe"), which can't distinguish chrome-mcp from any other Node process
46
+ * — far too weak a signal to kill on.
47
+ */
48
+ function commandLine(pid) {
49
+ const [cmd, args] = process.platform === 'win32'
50
+ ? [
51
+ 'powershell.exe',
52
+ [
53
+ '-NoProfile',
54
+ '-Command',
55
+ `(Get-CimInstance Win32_Process -Filter "ProcessId=${pid}").CommandLine`,
56
+ ],
57
+ ]
58
+ : ['ps', ['-p', String(pid), '-o', 'command=']];
59
+ try {
60
+ const out = (0, node_child_process_1.execFileSync)(cmd, args, {
61
+ encoding: 'utf8',
62
+ stdio: ['ignore', 'pipe', 'ignore'],
63
+ timeout: 5_000,
64
+ });
65
+ return out.trim() || null;
66
+ }
67
+ catch {
68
+ return null;
69
+ }
70
+ }
71
+ /** Does this command line belong to a chrome-mcp server? */
72
+ function looksLikeChromeMcp(cmdline) {
73
+ return /chrome-mcp/i.test(cmdline);
74
+ }
75
+ /**
76
+ * Try to free `port` by terminating the chrome-mcp that owns it.
77
+ * Returns true only if an owner was found, killed, and confirmed gone.
78
+ */
79
+ async function evictPortOwner(dataDir, port, log, deps = {}) {
80
+ const alive = deps.isAlive ?? isAlive;
81
+ const cmdOf = deps.commandLine ?? commandLine;
82
+ const kill = deps.kill ?? ((pid, sig) => process.kill(pid, sig));
83
+ let pid;
84
+ let hsPort;
85
+ try {
86
+ const hs = (0, auth_1.readHandshake)(dataDir);
87
+ pid = Number(hs?.pid);
88
+ hsPort = Number(hs?.port);
89
+ }
90
+ catch {
91
+ return false; // no handshake (clean shutdown) or unreadable — nothing to evict
92
+ }
93
+ if (!Number.isInteger(pid) || pid <= 0)
94
+ return false;
95
+ // The handshake describes a different listener; it says nothing about ours.
96
+ if (hsPort !== port)
97
+ return false;
98
+ if (pid === process.pid)
99
+ return false;
100
+ if (!alive(pid))
101
+ return false;
102
+ const cmdline = cmdOf(pid);
103
+ if (!cmdline || !looksLikeChromeMcp(cmdline)) {
104
+ log(`port ${port} is held by pid ${pid}, which does not look like chrome-mcp — ` +
105
+ `leaving it alone. Stop it yourself, or use a different --port.`);
106
+ return false;
107
+ }
108
+ log(`port ${port} is held by chrome-mcp pid ${pid} (another session) — taking the port over`);
109
+ try {
110
+ kill(pid, 'SIGTERM');
111
+ }
112
+ catch {
113
+ return false; // vanished or not ours to signal
114
+ }
115
+ const deadline = Date.now() + EXIT_WAIT_MS;
116
+ while (Date.now() < deadline) {
117
+ if (!alive(pid)) {
118
+ log(`previous owner (pid ${pid}) exited; reclaiming port ${port}`);
119
+ return true;
120
+ }
121
+ await delay(POLL_MS);
122
+ }
123
+ // Wouldn't go quietly.
124
+ try {
125
+ kill(pid, 'SIGKILL');
126
+ }
127
+ catch {
128
+ /* already gone */
129
+ }
130
+ const gone = !alive(pid);
131
+ if (gone)
132
+ log(`previous owner (pid ${pid}) force-killed; reclaiming port ${port}`);
133
+ return gone;
134
+ }
135
+ //# sourceMappingURL=evict.js.map
@@ -26,6 +26,9 @@ export interface BridgeOptions {
26
26
  port?: number;
27
27
  host?: string;
28
28
  heartbeatMs?: number;
29
+ /** Data dir holding the handshake. Enables reclaiming a pinned port from a
30
+ * stale chrome-mcp (see ./evict). Omit to disable eviction entirely. */
31
+ dataDir?: string;
29
32
  /** Diagnostics — MUST never receive the token (a test asserts this). */
30
33
  onLog?: (message: string) => void;
31
34
  onDisplacement?: (info: DisplacementInfo) => void;
@@ -20,6 +20,7 @@ const policy_1 = require("../../shared/policy");
20
20
  const types_1 = require("../executor/types");
21
21
  const connection_1 = require("./connection");
22
22
  const auth_1 = require("./auth");
23
+ const evict_1 = require("./evict");
23
24
  const config_1 = require("../config");
24
25
  /** The routing label for a hello with no/blank profile — the back-compat default. */
25
26
  const DEFAULT_PROFILE = 'default';
@@ -46,11 +47,12 @@ const delay = (ms) => new Promise((r) => setTimeout(r, ms));
46
47
  /** A friendly, actionable message for the rare case the port stays busy past PORT_WAIT_MS. */
47
48
  function portBusyMessage(host, port) {
48
49
  return (`Couldn't start: another program is already using ${host}:${port}.\n` +
49
- `This is almost always a previous chrome-mcp that didn't shut down. To fix it:\n` +
50
- ` 1. Fully quit/restart your MCP host (e.g. Claude Code), or\n` +
51
- ` 2. Stop the leftover process, then reconnect:\n` +
50
+ `A stale chrome-mcp is reclaimed automatically, so this is some OTHER program.\n` +
51
+ `To fix it:\n` +
52
+ ` 1. Stop whatever owns the port, then reconnect:\n` +
52
53
  ` macOS/Linux: lsof -nP -iTCP:${port} -sTCP:LISTEN then kill <PID>\n` +
53
- ` 3. Or run chrome-mcp with a different port: --port <number>`);
54
+ ` Windows: netstat -ano | findstr :${port} then taskkill /PID <PID> /F\n` +
55
+ ` 2. Or run chrome-mcp with a different port: --port <number>`);
54
56
  }
55
57
  class BridgeServer {
56
58
  opts;
@@ -76,6 +78,7 @@ class BridgeServer {
76
78
  // wait-and-retry for a few seconds so the old process can release it; only if
77
79
  // it never frees up do we surface a plain-English, actionable error.
78
80
  const deadline = Date.now() + PORT_WAIT_MS;
81
+ let evicted = false;
79
82
  for (let attempt = 1;; attempt++) {
80
83
  try {
81
84
  const wss = await this.listenOnce(host, port);
@@ -87,11 +90,20 @@ class BridgeServer {
87
90
  }
88
91
  catch (err) {
89
92
  const inUse = err?.code === 'EADDRINUSE';
90
- if (!inUse || port === 0 || Date.now() >= deadline) {
91
- if (inUse)
92
- throw new Error(portBusyMessage(host, port));
93
- throw err;
93
+ if (!inUse || port === 0)
94
+ throw inUse ? new Error(portBusyMessage(host, port)) : err;
95
+ // A live chrome-mcp from another session will never release the port on
96
+ // its own, so waiting it out is futile — take it over (once). Only a
97
+ // verified chrome-mcp is ever killed; anything else falls through to the
98
+ // wait-and-retry below, which covers our own just-replaced instance.
99
+ if (!evicted && this.opts.dataDir) {
100
+ evicted = true;
101
+ if (await (0, evict_1.evictPortOwner)(this.opts.dataDir, port, (m) => this.log(m))) {
102
+ continue;
103
+ }
94
104
  }
105
+ if (Date.now() >= deadline)
106
+ throw new Error(portBusyMessage(host, port));
95
107
  if (attempt === 1)
96
108
  this.log(`port ${host}:${port} busy — waiting for the previous instance to release it…`);
97
109
  await delay(PORT_RETRY_MS);
package/dist/src/cli.js CHANGED
@@ -159,6 +159,7 @@ async function main() {
159
159
  // Wire-serializable policy subset (no local uploadsDir) so the extension mirrors the gate.
160
160
  policy: { allowDomains, allowEval, allowDownloads, allowUploads, allowAllTabs, enableMutations },
161
161
  port: cfg.wsPort,
162
+ dataDir,
162
163
  onLog: (m) => (0, server_2.logErr)(m),
163
164
  onDisplacement: (d) => (0, server_2.logErr)(`SECURITY: extension connection displaced (different id: ${d.differentId})`),
164
165
  });
@@ -65,8 +65,14 @@ function clearProfileLocks(profileDir) {
65
65
  }
66
66
  }
67
67
  function isChromiumProcess(pid) {
68
+ // Windows has no `ps`; tasklist is the equivalent and is a real .exe, so it
69
+ // needs no shell. Its CSV row leads with the image name (e.g. "chrome.exe"),
70
+ // and the no-match case prints an INFO line that fails the same test.
71
+ const [cmd, args] = process.platform === 'win32'
72
+ ? ['tasklist', ['/FI', `PID eq ${pid}`, '/FO', 'CSV', '/NH']]
73
+ : ['ps', ['-p', String(pid), '-o', 'command=']];
68
74
  try {
69
- const out = (0, node_child_process_1.execFileSync)('ps', ['-p', String(pid), '-o', 'command='], {
75
+ const out = (0, node_child_process_1.execFileSync)(cmd, args, {
70
76
  encoding: 'utf8',
71
77
  stdio: ['ignore', 'pipe', 'ignore'],
72
78
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mehmoodqureshi/chrome-mcp",
3
- "version": "0.6.3",
4
- "description": "Drive a real Chrome browser over MCP. A stdio MCP server (CLI) plus an MV3 extension, behind one pluggable Executor (extension via chrome.scripting, or a Playwright CDP fallback).",
3
+ "version": "0.6.4",
4
+ "description": "Drive your real Chrome browser over MCP — real logins, real cookies. A stdio MCP server (CLI) plus an MV3 extension, driving Chrome via chrome.scripting/chrome.tabs. Multi-tab batch automation, accessibility snapshots, deny-all security by default.",
5
5
  "author": "Mehmood Ur Rehman Qureshi",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/Mehmoodqureshi/chrome-mcp#readme",
@@ -39,7 +39,13 @@ function main() {
39
39
  }
40
40
  try {
41
41
  const { execFileSync } = require('node:child_process');
42
- execFileSync('npx', ['playwright', 'install', 'chromium'], { stdio: 'inherit' });
42
+ const { dirname, join } = require('node:path');
43
+ // Drive Playwright's CLI through node rather than the `npx`/`playwright` bin
44
+ // shim: on Windows those are .cmd files, which execFileSync cannot spawn
45
+ // without a shell. `cli.js` is playwright's own bin target; resolving it via
46
+ // package.json avoids the exports map, which exposes no './cli' subpath.
47
+ const cli = join(dirname(require.resolve('playwright/package.json')), 'cli.js');
48
+ execFileSync(process.execPath, [cli, 'install', 'chromium'], { stdio: 'inherit' });
43
49
  } catch (err) {
44
50
  process.stdout.write(
45
51
  `[postinstall] Chromium install skipped (non-fatal): ${err && err.message ? err.message : err}\n`,