@shiplightai/mcp 0.1.35 → 0.1.36
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 +3 -2
- package/dist/index.js +399 -411
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,7 +65,8 @@ Existing environment variables are never overridden by `.env`, so project-local
|
|
|
65
65
|
|
|
66
66
|
| Option | Description |
|
|
67
67
|
|--------|-------------|
|
|
68
|
-
| `--cloud` |
|
|
68
|
+
| `--cloud` | Cloud-only mode — exposes only sync tools (`save_test_case`, `save_template`, `save_function`). Requires `SHIPLIGHT_API_TOKEN`. |
|
|
69
|
+
| `--full` | Full mode — browser tools + cloud features. Requires `SHIPLIGHT_API_TOKEN` for cloud tools. |
|
|
69
70
|
|
|
70
71
|
## What It Does
|
|
71
72
|
|
|
@@ -74,7 +75,7 @@ Once connected, your AI coding agent can:
|
|
|
74
75
|
- **Verify its own UI changes** — Open pages, interact with elements, and assert visual conditions using AI ("Verify the success message is displayed")
|
|
75
76
|
- **Debug UI issues** — Inspect console errors and network failures directly from the browser session
|
|
76
77
|
- **Generate regression tests** — Every action is captured as a human-readable step, so sessions can be exported as `.test.yaml` files for fast, deterministic replay
|
|
77
|
-
- **Sync to the cloud** — Manage test cases on Shiplight's cloud platform for team-wide regression coverage (requires `--
|
|
78
|
+
- **Sync to the cloud** — Manage test cases on Shiplight's cloud platform for team-wide regression coverage (requires `--full` or `--cloud`, plus `SHIPLIGHT_API_TOKEN`)
|
|
78
79
|
- **Attach to existing Chrome tabs** — Control your existing Chrome tabs via the Shiplight AI extension without recreating login state or complex setups
|
|
79
80
|
|
|
80
81
|
## Links
|