smooth-operator-mcp 2.4.4 → 2.4.5
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/dist/smooth-operator.mjs +2 -2
- package/docs/mcp-server.md +1 -1
- package/package.json +7 -7
package/dist/smooth-operator.mjs
CHANGED
|
@@ -1211,7 +1211,7 @@ async function runWizard(harness, opts) {
|
|
|
1211
1211
|
});
|
|
1212
1212
|
const session = tolerantQuestion(rl);
|
|
1213
1213
|
try {
|
|
1214
|
-
ui.banner("SmoothOperator Setup", `Give ${harness} a real Chrome it can drive`, opts.version ?? "2.4.
|
|
1214
|
+
ui.banner("SmoothOperator Setup", `Give ${harness} a real Chrome it can drive`, opts.version ?? "2.4.5");
|
|
1215
1215
|
ui.note(`Configuring: ${harness}`);
|
|
1216
1216
|
ui.note("Answer each question, or press Enter to accept the recommended default.");
|
|
1217
1217
|
ui.note(`You can re-run \`smooth-operator install ${harness}\` at any time to change these.`);
|
|
@@ -2445,7 +2445,7 @@ init_errors();
|
|
|
2445
2445
|
init_logger();
|
|
2446
2446
|
|
|
2447
2447
|
// src/server/version.ts
|
|
2448
|
-
var SERVER_VERSION = "2.4.
|
|
2448
|
+
var SERVER_VERSION = "2.4.5";
|
|
2449
2449
|
|
|
2450
2450
|
// src/server/mcp.ts
|
|
2451
2451
|
var EmptyInputSchema = z3.object({}).strict();
|
package/docs/mcp-server.md
CHANGED
|
@@ -33,7 +33,7 @@ are in `src/server/browser/service.ts`; policy and configuration are in
|
|
|
33
33
|
|
|
34
34
|
## Install and start
|
|
35
35
|
|
|
36
|
-
Use Node.js 22.23.2 and npm
|
|
36
|
+
Use Node.js 22.23.2 and npm 12.0.2 for the reproducible project baseline. A
|
|
37
37
|
published package includes the built executable:
|
|
38
38
|
|
|
39
39
|
```sh
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "smooth-operator-mcp",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.5",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"packageManager": "npm@
|
|
5
|
+
"packageManager": "npm@12.0.2",
|
|
6
6
|
"description": "A lightweight, production-grade MCP server for secure browser automation.",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@modelcontextprotocol/client": "^2.0.0",
|
|
54
|
-
"@types/node": "^26.
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
56
|
-
"@typescript-eslint/parser": "^8.
|
|
54
|
+
"@types/node": "^26.3.0",
|
|
55
|
+
"@typescript-eslint/eslint-plugin": "^8.68.0",
|
|
56
|
+
"@typescript-eslint/parser": "^8.68.0",
|
|
57
57
|
"@vitest/coverage-v8": "^4.1.11",
|
|
58
58
|
"esbuild": "^0.28.2",
|
|
59
|
-
"eslint": "^10.9.
|
|
59
|
+
"eslint": "^10.9.1",
|
|
60
60
|
"knip": "^6.32.2",
|
|
61
61
|
"tsx": "^4.23.12",
|
|
62
62
|
"typescript": "^6.0.3",
|
|
@@ -64,6 +64,6 @@
|
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|
|
66
66
|
"node": ">=22.23.2",
|
|
67
|
-
"npm": ">=
|
|
67
|
+
"npm": ">=12.0.2"
|
|
68
68
|
}
|
|
69
69
|
}
|