@uuv/mcp-server 0.2.0 → 0.3.0

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 CHANGED
@@ -58,7 +58,7 @@ First, install the UUV MCP server with your client.
58
58
  }
59
59
  ```
60
60
 
61
- <summary>opencode</summary>
61
+ <summary>Opencode</summary>
62
62
 
63
63
  Follow the MCP Servers [documentation](https://opencode.ai/docs/mcp-servers/). For example in `~/.config/opencode/opencode.json`:
64
64
 
@@ -84,9 +84,38 @@ Follow the MCP Servers [documentation](https://opencode.ai/docs/mcp-servers/). F
84
84
 
85
85
  <summary>Claude Code</summary>
86
86
 
87
- Use the Claude Code CLI to add the UUV MCP server:
87
+ Use the Claude Code CLI to add the Marketplace plugin for the UUV:
88
+ ```bash
89
+ claude plugin marketplace add https://github.com/e2e-test-quest/uuv
90
+ ```
91
+
92
+ Then use the Claude Code CLI to add specific UUV's plugin:
93
+
94
+ ```bash
95
+ claude plugin install uuv-e2e-accessibility-test@uuv-e2e-accessibility-test-marketplace
96
+ ```
97
+
98
+ Then use the Claude Code CLI to add the UUV MCP server:
88
99
 
89
100
  ```bash
90
101
  claude mcp add uuv npx @uuv/mcp-server@latest
91
102
  ```
103
+
104
+ </details>
105
+
106
+
107
+ <summary>Gemini CLI</summary>
108
+
109
+ To **add** the UUV Extension:
110
+
111
+ ```bash
112
+ gemini extensions install https://github.com/e2e-test-quest/uuv --auto-update
113
+ ```
114
+
115
+ To **remove** the UUV Extension:
116
+
117
+ ```bash
118
+ gemini extensions uninstall uuv-e2e-accessibility-test
119
+ ```
120
+
92
121
  </details>
package/dist/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ # [0.2.0](https://github.com/e2e-test-quest/uuv/compare/mcp-server-v0.1.3...mcp-server-v0.2.0) (2025-11-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **docs:** clone dictionary during doc generation ([c357bb8](https://github.com/e2e-test-quest/uuv/commit/c357bb8cb18f8aca0ade49e512c806c768030054))
7
+ * **runner-cypress:** update dependency @cypress/webpack-preprocessor to v7.0.2 ([1e2abab](https://github.com/e2e-test-quest/uuv/commit/1e2abab644d26e6b6fd65a00c8d6edd4cdbd2fb6))
8
+ * **runner-playwright:** update dependency chokidar to v4.0.3 ([0e11d27](https://github.com/e2e-test-quest/uuv/commit/0e11d27808d47d77ae982b8874492c98c0afdb76))
9
+
10
+
11
+ ### Features
12
+
13
+ * **mcp-server:** introduce unit-test for mcp-server and domSelector for generate_expect_elem, [#1164](https://github.com/e2e-test-quest/uuv/issues/1164) ([a1aabb3](https://github.com/e2e-test-quest/uuv/commit/a1aabb359ee780905cbbdf8d07248b59965208ca))
14
+ * **mcp-server:** refactor and add generate within and type tool, [#1164](https://github.com/e2e-test-quest/uuv/issues/1164) ([49530fb](https://github.com/e2e-test-quest/uuv/commit/49530fbcdfba9bc37b3978a15f155cd6ec98b9f5))
15
+ * **mcp-server:** refactor and add generate_test_click_element tool, [#1164](https://github.com/e2e-test-quest/uuv/issues/1164) ([7db8860](https://github.com/e2e-test-quest/uuv/commit/7db8860d55e21c126f6bfb043a4d721366217e87))
16
+ * **mcp-server:** rename tools generate_role_and_name and generate_table, [#1164](https://github.com/e2e-test-quest/uuv/issues/1164) ([2044197](https://github.com/e2e-test-quest/uuv/commit/204419743916269d7e238d11cbd073b5118ff4c1))
17
+ * **runner-cypress:** update dependency cypress to v15.7.0 ([36f50df](https://github.com/e2e-test-quest/uuv/commit/36f50dfebe23be556ade0c3e7ed5a53d9214bd9a))
18
+
1
19
  ## [0.1.3](https://github.com/e2e-test-quest/uuv/compare/mcp-server-v0.1.2...mcp-server-v0.1.3) (2025-11-21)
2
20
 
3
21
 
package/dist/README.md CHANGED
@@ -58,7 +58,7 @@ First, install the UUV MCP server with your client.
58
58
  }
59
59
  ```
60
60
 
61
- <summary>opencode</summary>
61
+ <summary>Opencode</summary>
62
62
 
63
63
  Follow the MCP Servers [documentation](https://opencode.ai/docs/mcp-servers/). For example in `~/.config/opencode/opencode.json`:
64
64
 
@@ -84,9 +84,38 @@ Follow the MCP Servers [documentation](https://opencode.ai/docs/mcp-servers/). F
84
84
 
85
85
  <summary>Claude Code</summary>
86
86
 
87
- Use the Claude Code CLI to add the UUV MCP server:
87
+ Use the Claude Code CLI to add the Marketplace plugin for the UUV:
88
+ ```bash
89
+ claude plugin marketplace add https://github.com/e2e-test-quest/uuv
90
+ ```
91
+
92
+ Then use the Claude Code CLI to add specific UUV's plugin:
93
+
94
+ ```bash
95
+ claude plugin install uuv-e2e-accessibility-test@uuv-e2e-accessibility-test-marketplace
96
+ ```
97
+
98
+ Then use the Claude Code CLI to add the UUV MCP server:
88
99
 
89
100
  ```bash
90
101
  claude mcp add uuv npx @uuv/mcp-server@latest
91
102
  ```
103
+
104
+ </details>
105
+
106
+
107
+ <summary>Gemini CLI</summary>
108
+
109
+ To **add** the UUV Extension:
110
+
111
+ ```bash
112
+ gemini extensions install https://github.com/e2e-test-quest/uuv --auto-update
113
+ ```
114
+
115
+ To **remove** the UUV Extension:
116
+
117
+ ```bash
118
+ gemini extensions uninstall uuv-e2e-accessibility-test
119
+ ```
120
+
92
121
  </details>
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uuv/mcp-server",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "description": "A Model Context Protocol (MCP) server for UUV - a solution to facilitate the writing and execution of E2E tests understandable by any human being(English or French) using cucumber(BDD) and cypress or playwright.",
5
5
  "author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
6
6
  "license": "MIT",
@@ -58,8 +58,8 @@
58
58
  "dependencies": {
59
59
  "@modelcontextprotocol/sdk": "1.17.5",
60
60
  "@types/mustache": "^4.2.6",
61
- "@uuv/assistant": "2.73.2",
62
- "@uuv/dictionary": "0.1.1",
61
+ "@uuv/assistant": "2.74.0",
62
+ "@uuv/dictionary": "0.2.0",
63
63
  "jsdom": "26.1.0",
64
64
  "mustache": "^4.2.0",
65
65
  "tsconfig-paths": "4.2.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uuv/mcp-server",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "A Model Context Protocol (MCP) server for UUV - a solution to facilitate the writing and execution of E2E tests understandable by any human being(English or French) using cucumber(BDD) and cypress or playwright.",
5
5
  "author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
6
6
  "license": "MIT",