@shiplightai/mcp 0.1.17 → 0.1.19

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 +5 -8
  2. package/dist/index.js +341 -341
  3. package/package.json +17 -16
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @shiplightai/mcp
2
2
 
3
- MCP server for AI-powered web application testing. Gives AI coding agents (Claude Code, Cursor, Windsurf, etc.) the ability to control a browser, verify UI flows, and generate rerunnable YAML test files.
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
- - **Browse and interact** — Open pages, click elements, fill forms, navigate
64
- - **Verify UI** — Assert visual conditions using AI ("Verify the success message is displayed")
65
- - **Generate local tests** — Scaffold a Playwright project and write `.test.yaml` files with captured action entities for fast, deterministic replay
66
- - **Manage cloud test cases** — Create, run, and review test cases on Shiplight's cloud platform (requires `API_TOKEN`)
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