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.
- package/.env.example +5 -5
- package/README.md +5 -2
- package/dist/smooth-operator.mjs +52 -149
- package/dist/smooth-operator.mjs.map +2 -2
- package/docs/mcp-server.md +16 -18
- package/package.json +1 -1
package/docs/mcp-server.md
CHANGED
|
@@ -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
|
-
|
|
51
|
-
|
|
52
|
-
|
|
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
|
|
171
|
-
features are available by default, including page evaluation and the
|
|
172
|
-
|
|
173
|
-
|
|
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` |
|
|
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` | `
|
|
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
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
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
|