@aloud/runner 0.2.0 → 0.2.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/README.md +13 -0
- package/dist/cli.js +3216 -15863
- package/package.json +6 -3
- package/src/cli.ts +5 -0
- package/src/discovery.ts +231 -0
- package/src/index.ts +1 -0
- package/src/loop.ts +34 -1
- package/src/model/proxy-adapter.ts +27 -16
- package/src/protocol/client.ts +34 -0
- package/src/version.ts +16 -0
package/README.md
CHANGED
|
@@ -23,8 +23,21 @@ The first `aloud start` downloads Chromium, about 350 MB, once.
|
|
|
23
23
|
| `aloud start [--once] [--quiet]` | Wait for studies and run them here |
|
|
24
24
|
| `aloud status` | What is set up, what is not, and whether it is running |
|
|
25
25
|
| `aloud allow <host>` | Let studies open this host from this machine |
|
|
26
|
+
| `aloud mcp` | Connect an MCP host to the web workspace selected by its MCP access token |
|
|
26
27
|
| `aloud logout` | Forget the token on this machine |
|
|
27
28
|
|
|
29
|
+
## MCP access
|
|
30
|
+
|
|
31
|
+
Open the web app's **Settings → MCP access**, create a connection, and paste the configuration it
|
|
32
|
+
shows into your MCP host. That configuration starts `aloud mcp` with a separate delegated token.
|
|
33
|
+
The stdio process keeps no research database of its own: studies, runs, evidence, and reports are
|
|
34
|
+
stored in the web workspace and remain available there after the MCP host disconnects.
|
|
35
|
+
|
|
36
|
+
Runner tokens (`utar_…`) and MCP tokens (`utam_…`) are intentionally different. A runner can claim
|
|
37
|
+
browser work but cannot create studies as a user; an MCP token is tied to the member who created it,
|
|
38
|
+
their current workspace role, and a narrow list of capabilities. Either token can be revoked from
|
|
39
|
+
the web app without deleting existing study history.
|
|
40
|
+
|
|
28
41
|
## What it will open
|
|
29
42
|
|
|
30
43
|
A machine starts allowed to open `localhost` only. Anything else has to be added here, with
|