zephyr-scale-mcp-server 0.0.1 → 0.0.2

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 +31 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -102,6 +102,37 @@ node build/index.js
102
102
  }
103
103
  ```
104
104
 
105
+ ## Verification
106
+
107
+ After installation, verify the package works:
108
+
109
+ ```bash
110
+ # Check installation
111
+ which zephyr-scale-mcp
112
+ # Should show: /opt/homebrew/bin/zephyr-scale-mcp (or similar path)
113
+
114
+ # Test with environment variables
115
+ export ZEPHYR_API_KEY="your-api-token"
116
+ export ZEPHYR_BASE_URL="https://your-company.atlassian.net"
117
+ zephyr-scale-mcp
118
+ # Should start the MCP server (Ctrl+C to exit)
119
+ ```
120
+
121
+ ### MCP Integration Test
122
+
123
+ Once configured in your MCP client, test with:
124
+
125
+ ```json
126
+ {
127
+ "tool": "get_test_case",
128
+ "arguments": {
129
+ "test_case_key": "PROJ-T123"
130
+ }
131
+ }
132
+ ```
133
+
134
+ Expected response includes test case details, BDD scripts, and metadata.
135
+
105
136
  ## Authentication
106
137
 
107
138
  Get your API token from:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zephyr-scale-mcp-server",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
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",