@skyramp/mcp 0.0.12 → 0.0.13
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
|
@@ -83,7 +83,7 @@ Add the following configuration. For more information, read the [Cursor MCP docu
|
|
|
83
83
|
}
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
[](https://cursor.com/install-mcp?name=skyramp-mcp&config=eyJjb21tYW5kIjoibnB4IC15IEBza3lyYW1wL21jcEBsYXRlc3QifQ==)
|
|
86
|
+
[](https://cursor.com/en/install-mcp?name=skyramp-mcp&config=eyJjb21tYW5kIjoibnB4IC15IEBza3lyYW1wL21jcEBsYXRlc3QifQ==)
|
|
87
87
|
|
|
88
88
|
### Note: To pull latest changes restart the MCP server
|
|
89
89
|
|
|
@@ -120,7 +120,7 @@ On Windows, you might need to use this alternative configuration:
|
|
|
120
120
|
}
|
|
121
121
|
```
|
|
122
122
|
|
|
123
|
-
[](https://cursor.com/install-mcp?name=skyramp-mcp&config=eyJjb21tYW5kIjoiY21kIC9rIG5weCAteSBAc2t5cmFtcC9tY3BAbGF0ZXN0In0=)
|
|
123
|
+
[](https://cursor.com/en/install-mcp?name=skyramp-mcp&config=eyJjb21tYW5kIjoiY21kIC9rIG5weCAteSBAc2t5cmFtcC9tY3BAbGF0ZXN0In0=)
|
|
124
124
|
|
|
125
125
|
## Available tools
|
|
126
126
|
|
|
@@ -19,6 +19,9 @@ export class E2ETestService extends TestGenerationService {
|
|
|
19
19
|
playwrightInput: params.playwrightInput,
|
|
20
20
|
};
|
|
21
21
|
}
|
|
22
|
+
async handleApiAnalysis(params, generateOptions) {
|
|
23
|
+
return null;
|
|
24
|
+
}
|
|
22
25
|
}
|
|
23
26
|
export function registerE2ETestTool(server) {
|
|
24
27
|
server.registerTool("skyramp_e2e_test_generation", {
|
|
@@ -5,6 +5,7 @@ const fuzzTestSchema = {
|
|
|
5
5
|
...baseTestSchema,
|
|
6
6
|
responseData: z
|
|
7
7
|
.string()
|
|
8
|
+
.default("")
|
|
8
9
|
.describe("Sample response body data, provided either as an inline JSON/YAML string or as an absolute file path prefixed with '@' (e.g., @/absolute/path/to/file)"),
|
|
9
10
|
};
|
|
10
11
|
export class FuzzTestService extends TestGenerationService {
|
|
@@ -18,6 +18,9 @@ export class IntegrationTestService extends TestGenerationService {
|
|
|
18
18
|
playwrightInput: params.playwrightInput,
|
|
19
19
|
};
|
|
20
20
|
}
|
|
21
|
+
async handleApiAnalysis(params, generateOptions) {
|
|
22
|
+
return null;
|
|
23
|
+
}
|
|
21
24
|
}
|
|
22
25
|
export function registerIntegrationTestTool(server) {
|
|
23
26
|
server.registerTool("skyramp_integration_test_generation", {
|
|
@@ -47,6 +47,9 @@ export class LoadTestService extends TestGenerationService {
|
|
|
47
47
|
loadTargetRPS: params.loadTargetRPS,
|
|
48
48
|
};
|
|
49
49
|
}
|
|
50
|
+
async handleApiAnalysis(params, generateOptions) {
|
|
51
|
+
return null;
|
|
52
|
+
}
|
|
50
53
|
}
|
|
51
54
|
export function registerLoadTestTool(server) {
|
|
52
55
|
server.registerTool("skyramp_load_test_generation", {
|