@shiplightai/mcp 0.1.26 → 0.1.27

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.
Files changed (3) hide show
  1. package/README.md +8 -1
  2. package/dist/index.js +538 -451
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -53,6 +53,12 @@ Pass environment variables through your MCP config:
53
53
  }
54
54
  ```
55
55
 
56
+ ## CLI Options
57
+
58
+ | Option | Description |
59
+ |--------|-------------|
60
+ | `--cloud` | Enable cloud features (test case management, test results). Requires `API_TOKEN` environment variable. |
61
+
56
62
  ## What It Does
57
63
 
58
64
  Once connected, your AI coding agent can:
@@ -60,7 +66,8 @@ Once connected, your AI coding agent can:
60
66
  - **Verify its own UI changes** — Open pages, interact with elements, and assert visual conditions using AI ("Verify the success message is displayed")
61
67
  - **Debug UI issues** — Inspect console errors and network failures directly from the browser session
62
68
  - **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
63
- - **Sync to the cloud** — Manage test cases on Shiplight's cloud platform for team-wide regression coverage (requires `API_TOKEN`)
69
+ - **Sync to the cloud** — Manage test cases on Shiplight's cloud platform for team-wide regression coverage (requires `--cloud` and `API_TOKEN`)
70
+ - **Attach to existing Chrome tabs** — Control your existing Chrome tabs via the Shiplight AI extension without recreating login state or complex setups
64
71
 
65
72
  ## Links
66
73