@azure/mcp 2.0.0-beta.23 → 2.0.0-beta.25

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 +8 -0
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -139,6 +139,8 @@ Check out the remote hosting [azd templates](https://github.com/microsoft/mcp/bl
139
139
  * "Add application setting 'LogLevel' with value 'INFO' to my 'my-webapp' in 'my-resource-group'"
140
140
  * "Set application setting 'LogLevel' to 'WARNING' to my 'my-webapp' in 'my-resource-group'"
141
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'"
142
144
 
143
145
  ### 🖥️ Azure CLI Generate
144
146
 
@@ -175,6 +177,12 @@ Example prompts that generate Azure CLI commands:
175
177
  * "Get virtual machine 'my-vm' with instance view including power state and runtime status"
176
178
  * "Show me the power state and provisioning status of VM 'my-vm'"
177
179
  * "What is the current status of my virtual machine 'my-vm'?"
180
+ * "Create a new VM named 'my-vm' in resource group 'my-rg' for web workloads"
181
+ * "Create a Linux VM with Ubuntu 22.04 and SSH key authentication"
182
+ * "Create a development VM with Standard_B2s size in East US"
183
+ * "Update VM 'my-vm' tags to environment=production"
184
+ * "Create a VMSS named 'my-vmss' with 3 instances for web workloads"
185
+ * "Update VMSS 'my-vmss' capacity to 5 instances"
178
186
 
179
187
  ### �📦 Azure Container Apps
180
188
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "2.0.0-beta.23",
3
+ "version": "2.0.0-beta.25",
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
- "type": "git",
18
- "url": "https://github.com/microsoft/mcp.git"
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-x64": "2.0.0-beta.23",
37
- "@azure/mcp-win32-arm64": "2.0.0-beta.23",
38
- "@azure/mcp-linux-x64": "2.0.0-beta.23",
39
- "@azure/mcp-win32-x64": "2.0.0-beta.23",
40
- "@azure/mcp-linux-arm64": "2.0.0-beta.23",
41
- "@azure/mcp-darwin-arm64": "2.0.0-beta.23"
36
+ "@azure/mcp-linux-x64": "2.0.0-beta.25",
37
+ "@azure/mcp-win32-x64": "2.0.0-beta.25",
38
+ "@azure/mcp-linux-arm64": "2.0.0-beta.25",
39
+ "@azure/mcp-darwin-x64": "2.0.0-beta.25",
40
+ "@azure/mcp-win32-arm64": "2.0.0-beta.25",
41
+ "@azure/mcp-darwin-arm64": "2.0.0-beta.25"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node ./scripts/post-install-script.js"