mcp-maestro-mobile-ai 1.3.0 → 1.3.1
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/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/src/mcp-server/index.js +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
18
|
+
## [1.3.1] - 2025-01-06
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- **MCP Schema Fix**: Fixed `generate_report` tool array parameter missing `items` definition
|
|
22
|
+
- This was causing "tool parameters array type must have items" validation error
|
|
23
|
+
- Now properly defines the structure of test result objects
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
18
27
|
## [1.2.0] - 2025-01-06
|
|
19
28
|
|
|
20
29
|
### Added
|
package/package.json
CHANGED
package/src/mcp-server/index.js
CHANGED
|
@@ -325,6 +325,16 @@ appId: com.example.app
|
|
|
325
325
|
properties: {
|
|
326
326
|
results: {
|
|
327
327
|
type: "array",
|
|
328
|
+
items: {
|
|
329
|
+
type: "object",
|
|
330
|
+
properties: {
|
|
331
|
+
name: { type: "string", description: "Test name" },
|
|
332
|
+
success: { type: "boolean", description: "Whether the test passed" },
|
|
333
|
+
duration: { type: "number", description: "Test duration in milliseconds" },
|
|
334
|
+
error: { type: "string", description: "Error message if test failed" },
|
|
335
|
+
},
|
|
336
|
+
required: ["name", "success"],
|
|
337
|
+
},
|
|
328
338
|
description: "Array of test results with name, success, duration, error fields",
|
|
329
339
|
},
|
|
330
340
|
promptFile: {
|