@lotfihoc/ado-on-prem-mcp 1.0.2 → 1.0.4

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
@@ -45,18 +45,11 @@ In your project, add a `.vscode\mcp.json` file and setup environment varibales w
45
45
 
46
46
  ```json
47
47
  {
48
- "inputs": [
49
- {
50
- "id": "ado_org",
51
- "type": "promptString",
52
- "description": "Azure DevOps organization name"
53
- }
54
- ],
55
48
  "servers": {
56
49
  "ado-on-prem-mcp": {
57
50
  "type": "stdio",
58
51
  "command": "npx",
59
- "args": ["-y", "@lotfihoc/ado-on-prem-mcp", "${input:ado_org}"],
52
+ "args": ["-y", "@lotfihoc/ado-on-prem-mcp", "<your_devops_project_name>", "--authentication", "envvar"],
60
53
  "env": {
61
54
  "LOG_LEVEL": "info",
62
55
  "ADO_MCP_MODE": "onprem",
@@ -135,18 +128,11 @@ setx ADO_MCP_AUTH_TOKEN "<pat_token>"`
135
128
 
136
129
  ```json
137
130
  {
138
- "inputs": [
139
- {
140
- "id": "ado_org",
141
- "type": "promptString",
142
- "description": "Azure DevOps organization name"
143
- }
144
- ],
145
131
  "servers": {
146
132
  "ado-on-prem-mcp": {
147
133
  "type": "stdio",
148
134
  "command": "npx",
149
- "args": ["-y", "@lotfihoc/ado-on-prem-mcp@next", "${input:ado_org}"],
135
+ "args": ["-y", "@lotfihoc/ado-on-prem-mcp", "<your_devops_project_name>", "--authentication", "envvar"],
150
136
  "env": {
151
137
  "LOG_LEVEL": "info",
152
138
  "ADO_MCP_MODE": "onprem",
@@ -190,18 +176,11 @@ For example, use `"-d", "core", "work", "work-items"` to load only Work Item rel
190
176
 
191
177
  ```json
192
178
  {
193
- "inputs": [
194
- {
195
- "id": "ado_org",
196
- "type": "promptString",
197
- "description": "Azure DevOps organization name"
198
- }
199
- ],
200
179
  "servers": {
201
180
  "ado-on-prem-mcp-with-filtered-domains": {
202
181
  "type": "stdio",
203
182
  "command": "npx",
204
- "args": ["-y", "@lotfihoc/ado-on-prem-mcp", "${input:ado_org}", "-d", "core", "work", "work-items"]
183
+ "args": ["-y", "@lotfihoc/ado-on-prem-mcp", "<your_devops_project_name>", "-d", "core", "work", "work-items", "--authentication", "envvar"],
205
184
  "env": {
206
185
  "LOG_LEVEL": "info",
207
186
  "ADO_MCP_MODE": "onprem",
@@ -216,7 +195,6 @@ For example, use `"-d", "core", "work", "work-items"` to load only Work Item rel
216
195
  }
217
196
  }
218
197
  }
219
-
220
198
  ```
221
199
 
222
200
  Domains that are available are: `core`, `work`, `work-items`, `search`, `test-plans`, `repositories`, `wiki`, `pipelines`, `advanced-security`
@@ -251,3 +229,5 @@ mcpServers:
251
229
  ADO_MCP_AUTH_TOKEN: ${{ secrets.ADO_TOKEN }}
252
230
  NODE_EXTRA_CA_CERTS: ${{ secrets.NODE_EXTRA_CA_CERTS }}
253
231
  ```
232
+
233
+ Don't forget to create `.env` in `.continue` folder to user secrets
package/dist/version.js CHANGED
@@ -1,2 +1,2 @@
1
- export const packageVersion = "1.0.02";
1
+ export const packageVersion = "1.0.04";
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lotfihoc/ado-on-prem-mcp",
3
- "version": "1.0.02",
3
+ "version": "1.0.04",
4
4
  "description": "MCP server for interacting with Azure DevOps (on-premises) WEM fork",
5
5
  "license": "MIT",
6
6
  "author": "Microsoft Corporation, WEB Marketing d.o.o. Fork, Lotfi Hoc",