@wa008/ui-audit-mcp 1.0.9 → 1.0.10

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/dist/src/index.js CHANGED
@@ -48,7 +48,7 @@ server.tool("swipe", "Swipe from one point to another on the screen. " +
48
48
  server.tool("get_checklist", "Get the UI evaluation checklist and create an evaluation session. " +
49
49
  "Use type='screen' for single-screen quality evaluation (4 items: overlap, layout, info clarity, ambiguity). " +
50
50
  "Use type='style' for multi-screen style consistency evaluation (3 items: color, component, typography).", getChecklistSchema.shape, async (args) => getChecklist(args));
51
- server.tool("submit_evaluation", "Submit scores for each checklist item. Determines pass/fail (passing score >= 3) " +
51
+ server.tool("submit_evaluation", "Submit scores for each checklist item. Determines pass/fail (passing score >= 8) " +
52
52
  "and persists the result. Failed items include reasons and suggestions for improvement.", submitEvaluationSchema.shape, async (args) => submitEvaluation(args));
53
53
  server.tool("evaluate_style_consistency", "Compare multiple screenshots for visual style consistency. " +
54
54
  "Provide at least 2 screenshots. Returns all images alongside a style consistency checklist. " +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wa008/ui-audit-mcp",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "MCP server for iOS app UI evaluation and testing, powered by idb + xcrun simctl",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",