@azure/mcp 2.0.0-beta.26 → 2.0.0-beta.27

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 +9 -2
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -171,6 +171,12 @@ Example prompts that generate Azure CLI commands:
171
171
  * "List all my managed disks in subscription 'my-subscription'"
172
172
  * "Show me all disks in resource group 'my-resource-group'"
173
173
  * "Get details of disk 'my-disk' in resource group 'my-resource-group'"
174
+ * "Create a 128 GB Premium_LRS managed disk named 'my-disk' in resource group 'my-resource-group'"
175
+ * "Create a managed disk from snapshot in resource group 'my-resource-group'"
176
+ * "Create a disk 'my-disk' in resource group 'my-resource-group' with tags env=prod team=infra"
177
+ * "Update disk 'my-disk' in resource group 'my-resource-group' to 256 GB"
178
+ * "Change the SKU of disk 'my-disk' to Premium_LRS"
179
+ * "Set the IOPS limit on ultra disk 'my-disk' in resource group 'my-resource-group' to 10000"
174
180
  * "List all virtual machines in my subscription"
175
181
  * "Show me all VMs in resource group 'my-resource-group'"
176
182
  * "Get details for virtual machine 'my-vm' in resource group 'my-resource-group'"
@@ -335,9 +341,10 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
335
341
  - 🧮 **Azure Data Explorer** - Analytics queries and KQL
336
342
  - 🐬 **Azure Database for MySQL** - MySQL database management
337
343
  - 🐘 **Azure Database for PostgreSQL** - PostgreSQL database management
344
+ - 🏭 **Azure Device Registry** - Device Registry namespace management
338
345
  - 📊 **Azure Event Grid** - Event routing and management
339
- - **Azure File Shares** - Azure managed file share operations
340
- - ⚡ **Azure Functions** - Function App management
346
+ - 📁 **Azure File Shares** - Azure managed file share operations
347
+ - ⚡ **Azure Functions** - Function App management and functions project files, language support, and templates source code
341
348
  - 🔑 **Azure Key Vault** - Secrets, keys, and certificates
342
349
  - ☸️ **Azure Kubernetes Service (AKS)** - Container orchestration
343
350
  - 📦 **Azure Load Testing** - Performance testing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "2.0.0-beta.26",
3
+ "version": "2.0.0-beta.27",
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",
@@ -33,12 +33,12 @@
33
33
  "arm64"
34
34
  ],
35
35
  "optionalDependencies": {
36
- "@azure/mcp-darwin-arm64": "2.0.0-beta.26",
37
- "@azure/mcp-linux-x64": "2.0.0-beta.26",
38
- "@azure/mcp-win32-arm64": "2.0.0-beta.26",
39
- "@azure/mcp-win32-x64": "2.0.0-beta.26",
40
- "@azure/mcp-darwin-x64": "2.0.0-beta.26",
41
- "@azure/mcp-linux-arm64": "2.0.0-beta.26"
36
+ "@azure/mcp-win32-arm64": "2.0.0-beta.27",
37
+ "@azure/mcp-linux-arm64": "2.0.0-beta.27",
38
+ "@azure/mcp-darwin-x64": "2.0.0-beta.27",
39
+ "@azure/mcp-linux-x64": "2.0.0-beta.27",
40
+ "@azure/mcp-win32-x64": "2.0.0-beta.27",
41
+ "@azure/mcp-darwin-arm64": "2.0.0-beta.27"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node ./scripts/post-install-script.js"