cucumberstudio-mcp 1.1.4 → 1.1.6

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.
@@ -1,4 +1,4 @@
1
1
  // Auto-generated version info - DO NOT EDIT
2
2
  // Generated at build time from package.json
3
- export const PACKAGE_VERSION = '1.1.4';
3
+ export const PACKAGE_VERSION = '1.1.6';
4
4
  export const PACKAGE_NAME = 'cucumberstudio-mcp';
package/manifest.json CHANGED
@@ -7,15 +7,15 @@
7
7
  "long_description": "A Model Context Protocol (MCP) server that provides LLM access to Cucumber Studio's testing platform. This server enables AI assistants to retrieve test scenarios, action words, test runs, and project information from Cucumber Studio. Features include project management, scenario browsing, reusable test steps access, and test execution monitoring with comprehensive error handling and type safety.",
8
8
  "author": {
9
9
  "name": "HeroSizy",
10
- "url": "https://github.com/HeroSizy/cucumberstudio-mcp"
10
+ "url": "https://github.com/HeroSizy"
11
11
  },
12
12
  "license": "MIT",
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/HeroSizy/cucumberstudio-mcp.git"
15
+ "url": "https://github.com/HeroSizy/cucumberstudio-mcp"
16
16
  },
17
17
  "homepage": "https://github.com/HeroSizy/cucumberstudio-mcp#readme",
18
- "documentation": "https://github.com/HeroSizy/cucumberstudio-mcp/blob/master/README.md",
18
+ "documentation": "https://github.com/HeroSizy/cucumberstudio-mcp#readme",
19
19
  "support": "https://github.com/HeroSizy/cucumberstudio-mcp/issues",
20
20
  "keywords": [
21
21
  "cucumber",
@@ -28,6 +28,7 @@
28
28
  "scenarios",
29
29
  "action-words"
30
30
  ],
31
+ "icon": "assets/icon.png",
31
32
  "server": {
32
33
  "type": "node",
33
34
  "entry_point": "bundle.js",
@@ -121,7 +122,39 @@
121
122
  "description": "List available execution environments for test runs and build configurations"
122
123
  }
123
124
  ],
125
+ "prompts": [
126
+ {
127
+ "name": "analyze_scenario",
128
+ "description": "Analyze a Cucumber Studio scenario for BDD best practices",
129
+ "arguments": ["scenario_reference"],
130
+ "text": "Analyze the Cucumber Studio scenario at ${arguments.scenario_reference} for BDD best practices, step clarity, and overall quality. First fetch the scenario data using the appropriate MCP tools, then provide detailed feedback on improvements."
131
+ },
132
+ {
133
+ "name": "review_project_health",
134
+ "description": "Review overall project testing health and trends",
135
+ "arguments": ["project_reference"],
136
+ "text": "Review the testing health of the Cucumber Studio project ${arguments.project_reference}. Fetch project data and recent test runs, then provide a comprehensive health summary including success rates, failure patterns, and recommendations."
137
+ },
138
+ {
139
+ "name": "diagnose_test_failures",
140
+ "description": "Diagnose test execution failures and suggest fixes",
141
+ "arguments": ["test_run_reference"],
142
+ "text": "Diagnose the failures in test run ${arguments.test_run_reference}. Fetch the test execution data and analyze failure patterns, root causes, and provide actionable recommendations for fixing the issues."
143
+ },
144
+ {
145
+ "name": "optimize_action_word",
146
+ "description": "Review action word for optimization opportunities",
147
+ "arguments": ["action_word_reference"],
148
+ "text": "Review the action word ${arguments.action_word_reference} for optimization opportunities. Fetch the action word details and analyze its structure, parameters, and usage patterns to suggest improvements."
149
+ },
150
+ {
151
+ "name": "compare_environments",
152
+ "description": "Compare test performance across execution environments",
153
+ "arguments": ["project_reference"],
154
+ "text": "Compare test execution performance across different environments for project ${arguments.project_reference}. Fetch environment data and test results, then analyze performance differences and stability issues."
155
+ }
156
+ ],
124
157
  "compatibility": {
125
158
  "node": ">=20.0.0"
126
159
  }
127
- }
160
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cucumberstudio-mcp",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "MCP server for Cucumber Studio API integration",
5
5
  "main": "build/index.js",
6
6
  "type": "module",