zephyr-scale-mcp-server 0.3.2 → 0.3.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.
package/README.md CHANGED
@@ -27,8 +27,7 @@ Configure your MCP client with the following structure.
27
27
  "args": ["zephyr-scale-mcp-server@latest"],
28
28
  "env": {
29
29
  "ZEPHYR_BASE_URL": "https://your-company.atlassian.net",
30
- "JIRA_USERNAME": "your-email@example.com",
31
- "JIRA_API_TOKEN": "your-api-token"
30
+ "ZEPHYR_API_KEY": "your-zephyr-api-key"
32
31
  }
33
32
  }
34
33
  }
@@ -139,19 +138,16 @@ The server provides access to various resources through URI schemes:
139
138
 
140
139
  ## Authentication
141
140
 
142
- The MCP server supports both Jira Cloud and Jira Data Center instances.
143
-
144
141
  ### Jira Cloud Configuration
145
142
  - `ZEPHYR_BASE_URL`: `https://your-company.atlassian.net`
146
- - `JIRA_USERNAME`: `your-email@example.com`
147
- - `JIRA_API_TOKEN`: Your API token from Atlassian account settings.
143
+ - `ZEPHYR_API_KEY`: Your Zephyr Scale API key (JWT). Generate it in Jira by clicking your profile picture (bottom left) → **Zephyr API keys**.
148
144
 
149
145
  ### Jira Data Center Configuration
150
146
  - `ZEPHYR_BASE_URL`: `https://your-jira-server.com`
151
- - `ZEPHYR_API_KEY`: Your API token from your Jira profile settings.
147
+ - `ZEPHYR_API_KEY`: Your Zephyr Scale API token from your Jira profile settings.
152
148
 
153
149
  ### Automatic Detection
154
- The server automatically detects your Jira type based on the `ZEPHYR_BASE_URL`. You can also explicitly set it with `JIRA_TYPE="cloud"` or `"datacenter"`.
150
+ The server automatically detects your Jira type based on `ZEPHYR_BASE_URL` — URLs containing `.atlassian.net` are treated as Cloud, everything else as Data Center. Override with `JIRA_TYPE="cloud"` or `JIRA_TYPE="datacenter"`.
155
151
 
156
152
  ## License
157
153