wopee-mcp 1.18.1 → 1.20.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Wopee.io
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Wopee MCP Server
2
2
 
3
- A Model Context Protocol (MCP) server for interacting with Wopee.io's autonomous testing platform. This server provides tools for managing analysis suites, generating test cases, user stories, and dispatching autonomous testing agents.
3
+ AI-powered autonomous testing for your apps -- connect Claude, Cursor, or any MCP-compatible AI agent to [Wopee.io](https://wopee.io) and generate test cases, user stories, and run autonomous tests in seconds.
4
+
5
+ ```bash
6
+ npx wopee-mcp
7
+ ```
8
+
9
+ > **[Documentation](https://docs.wopee.io/guides/wopee-mcp/)** | **[Landing Page](https://wopee.io/mcp/)** | **[Dashboard](https://cmd.wopee.io)**
4
10
 
5
11
  ## Setup
6
12
 
@@ -173,14 +179,18 @@ Fetch all existing analysis suites for my project
173
179
 
174
180
  #### `wopee_dispatch_analysis`
175
181
 
176
- Creates and dispatches a new analysis/crawling suite for your project. Use this to start a fresh analysis session.
182
+ Creates and dispatches a new analysis/crawling suite for your project, or reruns an existing one. Use this to start a fresh analysis session or to re-trigger a previous analysis.
177
183
 
178
184
  - **Parameters:**
179
185
  - `additionalInstructions` _(optional)_ - Additional instructions to guide the agent during the analysis/crawling phase (e.g. focus areas, things to ignore, login steps, etc.)
180
186
  - `additionalVariables` _(optional)_ - Additional environment variables to pass to the analysis. Array of objects, each with:
181
187
  - `key` - Variable name, must be uppercase with underscores only (e.g. `MY_VAR`, `BASE_URL`)
182
188
  - `value` - Variable value (non-empty string)
183
- - **Returns:** Success message with the created suite information
189
+ - `rerun` _(optional)_ - If provided, reruns an existing analysis suite instead of creating a new one. Object with:
190
+ - `suiteUuid` - UUID of the existing suite to rerun
191
+ - `analysisIdentifier` - Analysis identifier of the existing suite
192
+ - `mode` - Rerun mode: `FULL` (reruns the entire analysis including crawling and generation) or `CRAWLING` (reruns only the crawling phase)
193
+ - **Returns:** Success message with the created/rerun suite information
184
194
 
185
195
  **Example Usage:**
186
196
 
@@ -196,6 +206,14 @@ Dispatch a new analysis suite and focus on the checkout flow
196
206
  Dispatch a new analysis suite with additional variables CARD_FILAMENT=123321123 and AUTH_TOKEN=abc123
197
207
  ```
198
208
 
209
+ ```
210
+ Rerun the full analysis for suite <suiteUuid> with analysis identifier <analysisIdentifier>
211
+ ```
212
+
213
+ ```
214
+ Rerun only the crawling phase for suite <suiteUuid> with analysis identifier <analysisIdentifier>
215
+ ```
216
+
199
217
  #### `wopee_create_blank_suite`
200
218
 
201
219
  Creates a blank analysis suite for your project. Use this when you want to manually configure and populate a suite rather than having it automatically analyzed.
@@ -15,6 +15,6 @@ export const createDispatchAnalysisInput = (input) => {
15
15
  ? JSON.stringify(input.additionalVariables)
16
16
  : null,
17
17
  },
18
- rerun: null,
18
+ rerun: input.rerun ?? null,
19
19
  };
20
20
  };
@@ -25,6 +25,21 @@ const AdditionalVariableSchema = z.object({
25
25
  .string({ description: "Variable value. Must be a non-empty string." })
26
26
  .min(1, "Value must be a non-empty string"),
27
27
  });
28
+ const WopeeRerunOptionsSchema = z.object({
29
+ suiteUuid: z
30
+ .string({
31
+ description: "UUID of the existing suite to rerun.",
32
+ })
33
+ .min(1, "Suite UUID is required"),
34
+ analysisIdentifier: z
35
+ .string({
36
+ description: "Analysis identifier of the existing suite to rerun.",
37
+ })
38
+ .min(1, "Analysis identifier is required"),
39
+ mode: z.nativeEnum(RerunMode, {
40
+ description: "Rerun mode: FULL reruns the entire analysis (crawling + analysis), CRAWLING reruns only the crawling phase.",
41
+ }),
42
+ });
28
43
  export const WopeeDispatchAnalysisInputSchema = z.object({
29
44
  additionalInstructions: z
30
45
  .string({ description: "Additional instructions for the agent" })
@@ -34,4 +49,5 @@ export const WopeeDispatchAnalysisInputSchema = z.object({
34
49
  description: "Additional environment variables for the analysis. Each variable needs a key (uppercase, e.g. BASE_URL) and a non-empty value.",
35
50
  })
36
51
  .nullish(),
52
+ rerun: WopeeRerunOptionsSchema.nullish().describe("If provided, reruns an existing analysis suite instead of creating a new one. Requires suiteUuid, analysisIdentifier, and mode."),
37
53
  });
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "bin": {
5
5
  "wopee-mcp": "./build/index.js"
6
6
  },
7
- "version": "1.18.1",
7
+ "version": "1.20.0",
8
8
  "mcpName": "io.github.Wopee-io/wopee-mcp",
9
9
  "description": "Wopee.io MCP server for autonomous testing platform",
10
10
  "main": "./build/index.js",
@@ -16,19 +16,30 @@
16
16
  "build",
17
17
  "README.md"
18
18
  ],
19
+ "homepage": "https://wopee.io/mcp/",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/Wopee-io/wopee-mcp"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/Wopee-io/wopee-mcp/issues"
26
+ },
19
27
  "keywords": [
20
28
  "wopee",
21
- "ai",
29
+ "wopee.io",
22
30
  "mcp",
23
- "server",
24
- "testing",
25
- "automation",
26
- "autonomous",
27
- "quality assurance",
28
- "model context protocol"
31
+ "model context protocol",
32
+ "ai testing",
33
+ "autonomous testing",
34
+ "test automation",
35
+ "claude",
36
+ "cursor",
37
+ "ai agent",
38
+ "visual testing",
39
+ "playwright"
29
40
  ],
30
41
  "author": "Sota Giorgadze <sota.giorgadze@wopee.io>",
31
- "license": "ISC",
42
+ "license": "MIT",
32
43
  "dependencies": {
33
44
  "@modelcontextprotocol/sdk": "^1.21.0",
34
45
  "undici": "^7.18.2",