@radholm/azure-devops-mcp 1.0.0-beta.1 → 1.0.0-beta.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.
- package/README.md +2 -19
- package/dist/index.js +1 -2
- package/dist/version.js +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -250,12 +250,7 @@ Use the `--base-url` (or `-b`) option to point to your on-prem server, or set th
|
|
|
250
250
|
"ado-onprem": {
|
|
251
251
|
"type": "stdio",
|
|
252
252
|
"command": "npx",
|
|
253
|
-
"args": [
|
|
254
|
-
"-y", "@azure-devops/mcp",
|
|
255
|
-
"${input:ado_org}",
|
|
256
|
-
"--base-url", "https://azuredo.example.com/tfs/MyCollection",
|
|
257
|
-
"--authentication", "pat"
|
|
258
|
-
],
|
|
253
|
+
"args": ["-y", "@azure-devops/mcp", "${input:ado_org}", "--base-url", "https://azuredo.example.com/tfs/MyCollection", "--authentication", "pat"],
|
|
259
254
|
"env": {
|
|
260
255
|
"PERSONAL_ACCESS_TOKEN": "<base64 encoded email:pat>"
|
|
261
256
|
}
|
|
@@ -291,7 +286,7 @@ If your on-prem server uses self-signed SSL certificates, you may need to set th
|
|
|
291
286
|
Azure DevOps Server on-premises may not support the latest API versions used by the cloud service. If you encounter `404` or version-related errors, set the `AZURE_DEVOPS_API_VERSION` environment variable to match your server version:
|
|
292
287
|
|
|
293
288
|
| Azure DevOps Server Version | Supported API Version |
|
|
294
|
-
|
|
289
|
+
| --------------------------- | --------------------- |
|
|
295
290
|
| Azure DevOps Server 2022 | `7.1` |
|
|
296
291
|
| Azure DevOps Server 2020 | `6.0` |
|
|
297
292
|
| Azure DevOps Server 2019 | `5.1` |
|
|
@@ -342,18 +337,6 @@ See our [Contributions Guide](CONTRIBUTING.md) for:
|
|
|
342
337
|
This project follows the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
|
343
338
|
For questions, see the [FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [open@microsoft.com](mailto:open@microsoft.com).
|
|
344
339
|
|
|
345
|
-
## 📈 Project Stats
|
|
346
|
-
|
|
347
|
-
[](https://star-history.com/#microsoft/azure-devops-mcp)
|
|
348
|
-
|
|
349
|
-
## 🏆 Hall of Fame
|
|
350
|
-
|
|
351
|
-
Thanks to all contributors who make this project awesome! ❤️
|
|
352
|
-
|
|
353
|
-
[](https://github.com/microsoft/azure-devops-mcp/graphs/contributors)
|
|
354
|
-
|
|
355
|
-
> Generated with [contrib.rocks](https://contrib.rocks)
|
|
356
|
-
|
|
357
340
|
## License
|
|
358
341
|
|
|
359
342
|
Licensed under the [MIT License](LICENSE.md).
|
package/dist/index.js
CHANGED
|
@@ -94,8 +94,7 @@ async function main() {
|
|
|
94
94
|
// Validate authentication type for on-prem servers
|
|
95
95
|
if (isOnPrem && argv.authentication !== "pat" && argv.authentication !== "envvar") {
|
|
96
96
|
logger.error("On-premises Azure DevOps Server only supports 'pat' or 'envvar' authentication.");
|
|
97
|
-
throw new Error("On-premises Azure DevOps Server only supports 'pat' or 'envvar' authentication. " +
|
|
98
|
-
"Please use '--authentication pat' or '--authentication envvar'.");
|
|
97
|
+
throw new Error("On-premises Azure DevOps Server only supports 'pat' or 'envvar' authentication. " + "Please use '--authentication pat' or '--authentication envvar'.");
|
|
99
98
|
}
|
|
100
99
|
const server = new McpServer({
|
|
101
100
|
name: "Azure DevOps MCP Server",
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = "1.0.0-beta.
|
|
1
|
+
export const packageVersion = "1.0.0-beta.2";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@radholm/azure-devops-mcp",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
4
|
"description": "MCP server for interacting with Azure DevOps",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Fredrik Radholm",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"start": "node -r tsconfig-paths/register dist/index.js",
|
|
32
32
|
"eslint": "eslint",
|
|
33
33
|
"eslint-fix": "eslint --fix",
|
|
34
|
-
"format": "prettier --write
|
|
35
|
-
"format-check": "prettier --check
|
|
34
|
+
"format": "prettier --write .",
|
|
35
|
+
"format-check": "prettier --check .",
|
|
36
36
|
"clean": "shx rm -rf dist",
|
|
37
37
|
"test": "jest"
|
|
38
38
|
},
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@azure/identity": "^4.10.0",
|
|
41
41
|
"@azure/msal-node": "^5.0.6",
|
|
42
42
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
43
|
-
"azure-devops-extension-api": "^
|
|
43
|
+
"azure-devops-extension-api": "^5.272.3",
|
|
44
44
|
"azure-devops-extension-sdk": "^4.0.2",
|
|
45
45
|
"azure-devops-node-api": "^15.1.2",
|
|
46
46
|
"winston": "^3.18.3",
|