smooth-operator-mcp 3.0.0 → 3.0.1

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.
@@ -46,10 +46,10 @@ smooth-operator --help
46
46
  The interactive installer asks exactly three questions: (1) browser profile
47
47
  ownership, (2) headed or headless display, and (3) which Chromium executable to
48
48
  use. Its recommended defaults are a managed private persistent profile, headed
49
- display, and the first detected Chromium executable. It also enables page eval,
50
- balanced stealth, and short behavioral timing in the native profile; pass the
51
- corresponding environment flags as `false` when those capabilities are not
52
- wanted. Managed mode owns its profile. Connected mode launches and attaches to
49
+ display, and the first detected Chromium executable. It also enables page eval
50
+ and the identity-preserving compatibility profile; behavioral timing is off
51
+ for fast deterministic input and can be enabled explicitly. Managed mode owns
52
+ its profile. Connected mode launches and attaches to
53
53
  a dedicated debugging profile and does not claim ownership of an operator's
54
54
  daily browser.
55
55
 
@@ -167,11 +167,11 @@ The managed browser is headed by default for sign-in and human handoff. On CI or
167
167
  displayless host, explicitly set `SMOOTH_OPERATOR_BROWSER_HEADLESS=true` or use
168
168
  Xvfb. If you set both `SMOOTH_OPERATOR_BROWSER_VIEWPORT_WIDTH` and
169
169
  `SMOOTH_OPERATOR_BROWSER_VIEWPORT_HEIGHT`, that explicit viewport is applied to
170
- the browser and any opt-in stealth page metrics. All local browser tools and
171
- features are available by default, including page evaluation and the balanced
172
- stealth/short-behavior profile. Set their environment flags to `false` for a
173
- stricter or faster profile. See `STEALTH-GUIDE.md` for challenge handling and
174
- the remaining boundaries.
170
+ the browser and any explicitly configured viewport. All local browser tools and
171
+ features are available by default, including page evaluation and the
172
+ identity-preserving compatibility profile. Behavioral timing is off by default
173
+ for fast deterministic input. See `STEALTH-GUIDE.md` for challenge handling
174
+ and the remaining boundaries.
175
175
 
176
176
  ### Managed mode (default)
177
177
 
@@ -312,10 +312,10 @@ variables include:
312
312
  | `SMOOTH_OPERATOR_ALLOWED_FILE_ROOTS` | data `files`, `downloads` | Explicit roots replace defaults |
313
313
  | `SMOOTH_OPERATOR_ALLOW_PRIVATE_NETWORK` | `false` | Allows non-loopback private targets when true |
314
314
  | `SMOOTH_OPERATOR_ALLOW_EVAL` | `true` | Set `false` to disable page JavaScript |
315
- | `SMOOTH_OPERATOR_STEALTH_ENABLED` | `true` | Set `false` to preserve raw automation signals |
315
+ | `SMOOTH_OPERATOR_STEALTH_ENABLED` | `true` | Native-identity viewport compatibility script |
316
316
  | `SMOOTH_OPERATOR_STEALTH_PROFILE` | `balanced` | `balanced` or `max` compatibility label |
317
317
  | `SMOOTH_OPERATOR_STEALTH_GPU` | `false` | Adds opt-in GPU launch flags |
318
- | `SMOOTH_OPERATOR_BEHAVIOR_ENABLED` | `true` | Set `false` for fastest raw interactions |
318
+ | `SMOOTH_OPERATOR_BEHAVIOR_ENABLED` | `false` | Opt-in timing wrappers |
319
319
  | `SMOOTH_OPERATOR_HTTP_HOST` | `127.0.0.1` | HTTP bind host |
320
320
  | `SMOOTH_OPERATOR_HTTP_PORT` | `3344` | HTTP bind port |
321
321
  | `SMOOTH_OPERATOR_HTTP_PATH` | `/mcp` | HTTP endpoint path |
@@ -328,13 +328,11 @@ variables include:
328
328
 
329
329
  ### Fast operation mode
330
330
 
331
- The default configuration is a native managed browser with short bounded
332
- behavioral timing, the conservative stealth baseline, and page evaluation
333
- available. For the fastest raw interactions, set
334
- `SMOOTH_OPERATOR_BEHAVIOR_ENABLED=false` and, when appropriate,
335
- `SMOOTH_OPERATOR_STEALTH_ENABLED=false`; set `SMOOTH_OPERATOR_ALLOW_EVAL=false`
336
- when page JavaScript is not needed. Tool calls remain bounded and cancellable;
337
- no hidden planning loop is introduced.
331
+ The default configuration is a native managed browser with page evaluation
332
+ available, native browser identity, and deterministic input. Enable
333
+ `SMOOTH_OPERATOR_BEHAVIOR_ENABLED=true` only when a workflow explicitly needs
334
+ timing wrappers. Tool calls remain bounded and cancellable; no hidden planning
335
+ loop is introduced.
338
336
 
339
337
  Raw MCP/tool-call speed is not the main bot-detection vector. Sites can score
340
338
  network and browser identity, IP reputation, session history, and interaction
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smooth-operator-mcp",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "type": "module",
5
5
  "packageManager": "npm@12.0.2",
6
6
  "description": "A lightweight, production-grade MCP server for secure browser automation.",