@azure/mcp 2.0.0-beta.22 β 2.0.0-beta.24
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 +10 -3
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -132,6 +132,15 @@ Check out the remote hosting [azd templates](https://github.com/microsoft/mcp/bl
|
|
|
132
132
|
### πΈοΈ Azure App Service
|
|
133
133
|
|
|
134
134
|
* "Add a database connection for an App Service web app"
|
|
135
|
+
* "List the web apps in my subscription"
|
|
136
|
+
* "Show me the web apps in my 'my-resource-group' resource group"
|
|
137
|
+
* "Get the details for web app 'my-webapp' in 'my-resource-group'"
|
|
138
|
+
* "Get the application settings for my web app 'my-webapp' in 'my-resource-group'"
|
|
139
|
+
* "Add application setting 'LogLevel' with value 'INFO' to my 'my-webapp' in 'my-resource-group'"
|
|
140
|
+
* "Set application setting 'LogLevel' to 'WARNING' to my 'my-webapp' in 'my-resource-group'"
|
|
141
|
+
* "Delete application setting 'LogLevel' from my 'my-webapp' in 'my-resource-group'"
|
|
142
|
+
* "List the deployments for web app 'my-webapp' in 'my-resource-group'"
|
|
143
|
+
* "Get the deployment 'deployment-id' for web app 'my-webapp' in 'my-resource-group'"
|
|
135
144
|
|
|
136
145
|
### π₯οΈ Azure CLI Generate
|
|
137
146
|
|
|
@@ -139,9 +148,6 @@ Check out the remote hosting [azd templates](https://github.com/microsoft/mcp/bl
|
|
|
139
148
|
|
|
140
149
|
Example prompts that generate Azure CLI commands:
|
|
141
150
|
|
|
142
|
-
* "List the websites in my subscription"
|
|
143
|
-
* "Show me the websites in my 'my-resource-group' resource group"
|
|
144
|
-
* "Get the details for website 'my-website'"
|
|
145
151
|
* "Get the details for app service plan 'my-app-service-plan'"
|
|
146
152
|
|
|
147
153
|
### π₯οΈ Azure CLI Install
|
|
@@ -360,6 +366,7 @@ The Azure MCP Server provides tools for interacting with **42+ Azure service are
|
|
|
360
366
|
## Feedback and Support
|
|
361
367
|
|
|
362
368
|
- Check the [Troubleshooting guide](https://aka.ms/azmcp/troubleshooting) to diagnose and resolve common issues with the Azure MCP Server.
|
|
369
|
+
- Review the [Known Issues](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/KNOWN-ISSUES.md) for current limitations and workarounds.
|
|
363
370
|
- For advanced troubleshooting, you can enable [support logging](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/TROUBLESHOOTING.md#support-logging) using the `--dangerously-write-support-logs-to-dir` option.
|
|
364
371
|
- We're building this in the open. Your feedback is much appreciated, and will help us shape the future of the Azure MCP server.
|
|
365
372
|
- π [Open an issue](https://github.com/microsoft/mcp/issues) in the public GitHub repository β weβd love to hear from you!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.24",
|
|
4
4
|
"description": "Azure MCP Server - Model Context Protocol implementation for Azure",
|
|
5
5
|
"author": "Microsoft",
|
|
6
6
|
"homepage": "https://github.com/Microsoft/mcp/blob/main/servers/Azure.Mcp.Server#readme",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"url": "https://github.com/microsoft/mcp/issues"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
17
|
+
"url": "https://github.com/microsoft/mcp.git",
|
|
18
|
+
"type": "git"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=20.0.0"
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"arm64"
|
|
34
34
|
],
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@azure/mcp-darwin-arm64": "2.0.0-beta.
|
|
37
|
-
"@azure/mcp-
|
|
38
|
-
"@azure/mcp-
|
|
39
|
-
"@azure/mcp-win32-x64": "2.0.0-beta.
|
|
40
|
-
"@azure/mcp-
|
|
41
|
-
"@azure/mcp-
|
|
36
|
+
"@azure/mcp-darwin-arm64": "2.0.0-beta.24",
|
|
37
|
+
"@azure/mcp-linux-arm64": "2.0.0-beta.24",
|
|
38
|
+
"@azure/mcp-win32-arm64": "2.0.0-beta.24",
|
|
39
|
+
"@azure/mcp-win32-x64": "2.0.0-beta.24",
|
|
40
|
+
"@azure/mcp-darwin-x64": "2.0.0-beta.24",
|
|
41
|
+
"@azure/mcp-linux-x64": "2.0.0-beta.24"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|