@m00nsolutions/mcp-server 1.3.2 → 1.4.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.
Files changed (2) hide show
  1. package/README.md +35 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -132,11 +132,11 @@ Prompts are **guided workflow templates** that provide context and instructions
132
132
 
133
133
  ---
134
134
 
135
- ## Available Tools (40+)
135
+ ## Available Tools (41)
136
136
 
137
137
  All tools include **MCP 2025 annotations** to help AI clients understand tool safety characteristics.
138
138
 
139
- ### Analytics Tools (Read-Only)
139
+ ### Analytics & AI Tools (Read-Only)
140
140
  | Tool | Description |
141
141
  |------|-------------|
142
142
  | `list_projects` | List all accessible projects |
@@ -145,6 +145,15 @@ All tools include **MCP 2025 annotations** to help AI clients understand tool sa
145
145
  | `get_launch_tests` | Get all tests from a specific run |
146
146
  | `get_test_history` | Get execution history for a test |
147
147
  | `search_tests` | Search tests by title or file path |
148
+ | `run_health_check` | 🆕 Get overall project health score (0-100) with recommendations |
149
+ | `get_coverage_gaps` | 🆕 Identify test cases without linked autotests |
150
+ | `suggest_test_cases` | 🆕 Generate test case suggestions from feature description |
151
+ | `export_report` | 🆕 Generate markdown reports (summary, failures, trends, release) |
152
+
153
+ ### Bulk Operations
154
+ | Tool | Annotations | Description |
155
+ |------|-------------|-------------|
156
+ | `bulk_update_cases` | ✏️ update | 🆕 Update multiple test cases at once (status, priority, tags) |
148
157
 
149
158
  ### Test Case Management
150
159
  | Tool | Annotations | Description |
@@ -346,11 +355,35 @@ Set `M00N_DEBUG=true` to see detailed logs:
346
355
 
347
356
  Once configured, try these prompts in Claude or Cursor:
348
357
 
358
+ ### Analytics & Health
349
359
  - "List my M00n Report projects"
350
360
  - "Show me the test pass rate trends for the last 30 days"
351
361
  - "What are the top 10 flaky tests in project X?"
352
362
  - "Get me the failed test runs from this week"
353
363
  - "Which tests are taking the longest to run?"
364
+ - "Run a health check on my project"
365
+ - "What's the overall health score for project X?"
366
+
367
+ ### Coverage Analysis (NEW!)
368
+ - "Show me the test coverage gaps in my project"
369
+ - "Which test cases don't have automated tests?"
370
+ - "Which folders have low automation coverage?"
371
+
372
+ ### AI-Assisted (NEW!)
373
+ - "Suggest test cases for the user login feature"
374
+ - "Generate test case ideas for: users can upload profile pictures up to 5MB"
375
+ - "Create edge case tests for the payment checkout flow"
376
+
377
+ ### Bulk Operations (NEW!)
378
+ - "Update all test cases TC-001, TC-002, TC-003 to status Approved"
379
+ - "Add the 'regression' tag to all selected test cases"
380
+ - "Set priority to High for these 5 test cases"
381
+
382
+ ### Reporting (NEW!)
383
+ - "Generate a summary report for my project"
384
+ - "Export a failures report for the last 7 days"
385
+ - "Show me the trends report in markdown format"
386
+ - "Generate a release status report for release v2.1.0"
354
387
 
355
388
  ## Support
356
389
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m00nsolutions/mcp-server",
3
- "version": "1.3.2",
3
+ "version": "1.4.0",
4
4
  "description": "MCP server for M00n Report - enables AI assistants like Claude and Cursor to query test analytics",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",