@azure/mcp 2.0.0-beta.25 → 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 +18 -3
  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'"
@@ -307,9 +313,16 @@ Example prompts that generate Azure CLI commands:
307
313
  * "Turn off DDoS protection in my Platform Landing Zone"
308
314
  * "Turn off Bastion host in my Platform Landing Zone"
309
315
 
316
+ ### 🏛️ Azure Well-Architected Framework
317
+
318
+ * "Get Well-Architected Framework guidance for App Service"
319
+ * "What's the WAF guidance for a VM?"
320
+ * "Show me the best practices for virtual machines"
321
+ * "What's the architectural guidance for Azure Cosmos DB?"
322
+
310
323
  ## Complete List of Supported Azure Services
311
324
 
312
- The Azure MCP Server provides tools for interacting with **42+ Azure service areas**:
325
+ The Azure MCP Server provides tools for interacting with **43+ Azure service areas**:
313
326
 
314
327
  - 🧮 **Microsoft Foundry** - AI model management, AI model deployment, and knowledge index management
315
328
  - 📊 **Azure Advisor** - Advisor recommendations
@@ -328,9 +341,10 @@ The Azure MCP Server provides tools for interacting with **42+ Azure service are
328
341
  - 🧮 **Azure Data Explorer** - Analytics queries and KQL
329
342
  - 🐬 **Azure Database for MySQL** - MySQL database management
330
343
  - 🐘 **Azure Database for PostgreSQL** - PostgreSQL database management
344
+ - 🏭 **Azure Device Registry** - Device Registry namespace management
331
345
  - 📊 **Azure Event Grid** - Event routing and management
332
- - **Azure File Shares** - Azure managed file share operations
333
- - ⚡ **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
334
348
  - 🔑 **Azure Key Vault** - Secrets, keys, and certificates
335
349
  - ☸️ **Azure Kubernetes Service (AKS)** - Container orchestration
336
350
  - 📦 **Azure Load Testing** - Performance testing
@@ -357,6 +371,7 @@ The Azure MCP Server provides tools for interacting with **42+ Azure service are
357
371
  - 📋 **Azure Subscription** - Subscription management
358
372
  - 🏗️ **Azure Terraform Best Practices** - Infrastructure as code guidance
359
373
  - 🖥️ **Azure Virtual Desktop** - Virtual desktop infrastructure
374
+ - 🏛️ **Azure Well-Architected Framework** - Architectural best practices and design patterns
360
375
  - 📊 **Azure Workbooks** - Custom visualizations
361
376
  - 🏗️ **Bicep** - Azure resource templates
362
377
  - 🏗️ **Cloud Architect** - Guided architecture design
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "2.0.0-beta.25",
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-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"
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"