@shiplightai/mcp 0.1.17 → 0.1.18
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 +5 -8
- package/dist/index.js +233 -233
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @shiplightai/mcp
|
|
2
2
|
|
|
3
|
-
MCP
|
|
3
|
+
UI automation MCP for agentic development workflows. Lets AI coding agents (Claude Code, Cursor, Windsurf, etc.) verify the UI changes they make — closing the build-verify loop automatically. Every interaction is captured as a human-readable step, producing rerunnable regression tests.
|
|
4
4
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
@@ -20,9 +20,6 @@ Add to your MCP config (e.g., `.cursor/mcp.json`):
|
|
|
20
20
|
"shiplight": {
|
|
21
21
|
"command": "npx",
|
|
22
22
|
"args": ["-y", "@shiplightai/mcp@latest"]
|
|
23
|
-
},
|
|
24
|
-
"env": {
|
|
25
|
-
"PWDEBUG": "console"
|
|
26
23
|
}
|
|
27
24
|
}
|
|
28
25
|
}
|
|
@@ -60,10 +57,10 @@ Pass environment variables through your MCP config:
|
|
|
60
57
|
|
|
61
58
|
Once connected, your AI coding agent can:
|
|
62
59
|
|
|
63
|
-
- **
|
|
64
|
-
- **
|
|
65
|
-
- **Generate
|
|
66
|
-
- **
|
|
60
|
+
- **Verify its own UI changes** — Open pages, interact with elements, and assert visual conditions using AI ("Verify the success message is displayed")
|
|
61
|
+
- **Debug UI issues** — Inspect console errors and network failures directly from the browser session
|
|
62
|
+
- **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`)
|
|
67
64
|
|
|
68
65
|
## Links
|
|
69
66
|
|