zephyr-scale-mcp-server 0.0.4 → 0.0.5

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 +21 -57
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,35 +4,23 @@ Model Context Protocol server for Zephyr Scale test management. Create, read, an
4
4
 
5
5
  ## Quick Start
6
6
 
7
- ### Option 1: Install from npm
8
- ```bash
9
- npm install -g zephyr-scale-mcp-server
10
- ```
7
+ ### Option 1: Using npx (Recommended - No installation required)
8
+ Just configure your MCP client with the npx command below.
11
9
 
12
- ### Option 2: Build locally
10
+ ### Option 2: Install from npm
13
11
  ```bash
14
- # Clone and build
15
- git clone <repository-url>
16
- cd zephyr-scale-mcp-server
17
- npm install
18
- npm run build
19
-
20
- # Configure environment
21
- export ZEPHYR_API_KEY="your-api-token"
22
- export ZEPHYR_BASE_URL="https://your-company.atlassian.net"
23
-
24
- # Test the server
25
- node build/index.js
12
+ npm install -g zephyr-scale-mcp-server
26
13
  ```
27
14
 
28
15
  ## MCP Configuration
29
16
 
30
- ### For npm installation:
17
+ ### Option 1: Using npx (Recommended - No installation required)
31
18
  ```json
32
19
  {
33
20
  "mcpServers": {
34
21
  "zephyr-server": {
35
- "command": "zephyr-scale-mcp",
22
+ "command": "npx",
23
+ "args": ["zephyr-scale-mcp-server@latest"],
36
24
  "env": {
37
25
  "ZEPHYR_API_KEY": "your-api-token",
38
26
  "ZEPHYR_BASE_URL": "https://your-company.atlassian.net"
@@ -42,13 +30,18 @@ node build/index.js
42
30
  }
43
31
  ```
44
32
 
45
- ### For local build:
33
+ ### Option 2: Using global npm installation
34
+ First install the package globally:
35
+ ```bash
36
+ npm install -g zephyr-scale-mcp-server
37
+ ```
38
+
39
+ Then configure:
46
40
  ```json
47
41
  {
48
42
  "mcpServers": {
49
43
  "zephyr-server": {
50
- "command": "node",
51
- "args": ["/path/to/zephyr-scale-mcp-server/build/index.js"],
44
+ "command": "zephyr-scale-mcp",
52
45
  "env": {
53
46
  "ZEPHYR_API_KEY": "your-api-token",
54
47
  "ZEPHYR_BASE_URL": "https://your-company.atlassian.net"
@@ -60,13 +53,13 @@ node build/index.js
60
53
 
61
54
  ## Available Tools
62
55
 
63
- - `create_test_case` - Create STEP_BY_STEP or PLAIN_TEXT test cases
64
- - `create_test_case_with_bdd` - Create BDD/Gherkin test cases
65
- - `get_test_case` - Get test case details
66
- - `update_test_case_bdd` - Update BDD test cases
56
+ - `get_test_case` - Get detailed information about a specific test case
57
+ - `create_test_case` - Create a new test case with STEP_BY_STEP or PLAIN_TEXT content
58
+ - `create_test_case_with_bdd` - Create a new test case with BDD content
59
+ - `update_test_case_bdd` - Update an existing test case with BDD content
67
60
  - `delete_test_case` - Delete a specific test case
68
- - `create_folder` - Create test case folders
69
- - `get_test_run_cases` - Get test cases from test runs
61
+ - `create_folder` - Create a new folder in Zephyr Scale
62
+ - `get_test_run_cases` - Get test case keys from a test run
70
63
 
71
64
  ## Examples
72
65
 
@@ -110,36 +103,7 @@ node build/index.js
110
103
  }
111
104
  ```
112
105
 
113
- ## Verification
114
-
115
- After installation, verify the package works:
116
-
117
- ```bash
118
- # Check installation
119
- which zephyr-scale-mcp
120
- # Should show: /opt/homebrew/bin/zephyr-scale-mcp (or similar path)
121
-
122
- # Test with environment variables
123
- export ZEPHYR_API_KEY="your-api-token"
124
- export ZEPHYR_BASE_URL="https://your-company.atlassian.net"
125
- zephyr-scale-mcp
126
- # Should start the MCP server (Ctrl+C to exit)
127
- ```
128
-
129
- ### MCP Integration Test
130
-
131
- Once configured in your MCP client, test with:
132
-
133
- ```json
134
- {
135
- "tool": "get_test_case",
136
- "arguments": {
137
- "test_case_key": "PROJ-T123"
138
- }
139
- }
140
- ```
141
106
 
142
- Expected response includes test case details, BDD scripts, and metadata.
143
107
 
144
108
  ## Authentication
145
109
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zephyr-scale-mcp-server",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Model Context Protocol (MCP) server for Zephyr Scale test case management with comprehensive STEP_BY_STEP, PLAIN_TEXT, and BDD support",
5
5
  "type": "module",
6
6
  "main": "./build/index.js",