zephyr-enterprise-tools 1.2.2 → 1.2.3

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 +26 -30
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -73,50 +73,46 @@ Use zephyr-enterprise-tools as an MCP (Model Context Protocol) server with your
73
73
  | `search_test_cases` | Search test cases by query |
74
74
  | `user_activity` | Get user activity metrics |
75
75
 
76
- ### VS Code with GitHub Copilot
76
+ ### Claude Desktop
77
77
 
78
- Create or edit `.vscode/mcp.json` in your workspace:
78
+ Edit your `claude_desktop_config.json` file:
79
79
 
80
80
  ```json
81
81
  {
82
- "servers": {
83
- "zephyr-enterprise": {
84
- "type": "stdio",
82
+ "mcpServers": {
83
+ "zephyr": {
85
84
  "command": "npx",
86
- "args": ["-y", "zephyr-enterprise-tools@latest", "mcp"],
85
+ "args": [
86
+ "-y",
87
+ "--package",
88
+ "zephyr-enterprise-tools@latest",
89
+ "zephyr-mcp"
90
+ ],
87
91
  "env": {
88
- "ZEPHYR_BASE_URL": "${input:zephyr_base_url}",
89
- "ZEPHYR_TOKEN": "${input:zephyr_token}"
92
+ "ZEPHYR_BASE_URL": "https://your-zephyr.com/flex/services/rest/latest",
93
+ "ZEPHYR_TOKEN": "your-api-token"
90
94
  }
91
95
  }
92
- },
93
- "inputs": [
94
- {
95
- "id": "zephyr_base_url",
96
- "type": "promptString",
97
- "description": "Zephyr Enterprise API Base URL (e.g. https://your-zephyr.com/flex/services/rest/latest)",
98
- "password": false
99
- },
100
- {
101
- "id": "zephyr_token",
102
- "type": "promptString",
103
- "description": "Zephyr Enterprise API Token",
104
- "password": true
105
- }
106
- ]
96
+ }
107
97
  }
108
98
  ```
109
99
 
110
- ### Cursor
100
+ ### VS Code with GitHub Copilot
111
101
 
112
- Add to your `mcp.json` configuration:
102
+ Create or edit `.vscode/mcp.json` in your workspace:
113
103
 
114
104
  ```json
115
105
  {
116
- "mcpServers": {
117
- "zephyr-enterprise": {
106
+ "servers": {
107
+ "zephyr": {
108
+ "type": "stdio",
118
109
  "command": "npx",
119
- "args": ["-y", "zephyr-enterprise-tools@latest", "mcp"],
110
+ "args": [
111
+ "-y",
112
+ "--package",
113
+ "zephyr-enterprise-tools",
114
+ "zephyr-mcp"
115
+ ],
120
116
  "env": {
121
117
  "ZEPHYR_BASE_URL": "https://your-zephyr.com/flex/services/rest/latest",
122
118
  "ZEPHYR_TOKEN": "your-api-token"
@@ -126,9 +122,9 @@ Add to your `mcp.json` configuration:
126
122
  }
127
123
  ```
128
124
 
129
- ### Claude Desktop
125
+ ### Cursor
130
126
 
131
- Edit your `claude_desktop_config.json` file:
127
+ Add to your `mcp.json` configuration:
132
128
 
133
129
  ```json
134
130
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zephyr-enterprise-tools",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Comprehensive Zephyr Enterprise Tools - Release Readiness, Project Health, Test Analytics & More",
5
5
  "main": "zephyr-enterprise-tools.js",
6
6
  "types": "zephyr-enterprise-tools.d.ts",