@azure/mcp 3.0.0-beta.5 → 3.0.0-beta.6
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 +15 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -372,6 +372,20 @@ Example prompts that generate Azure CLI commands:
|
|
|
372
372
|
* "Turn off DDoS protection in my Platform Landing Zone"
|
|
373
373
|
* "Turn off Bastion host in my Platform Landing Zone"
|
|
374
374
|
|
|
375
|
+
### Azure Terraform
|
|
376
|
+
|
|
377
|
+
* "Get the documentation for azurerm_virtual_network"
|
|
378
|
+
* "Show me the arguments for azurerm_storage_account"
|
|
379
|
+
* "Get AzAPI documentation for Microsoft.Storage/storageAccounts"
|
|
380
|
+
* "Get AzAPI docs for Microsoft.Compute/virtualMachines with API version 2024-07-01"
|
|
381
|
+
* "List all available Azure Verified Modules"
|
|
382
|
+
* "Show all versions of avm-res-network-virtualnetwork"
|
|
383
|
+
* "Get the documentation for avm-res-storage-storageaccount version 0.1.0"
|
|
384
|
+
* "Export all resources in resource group my-rg to Terraform"
|
|
385
|
+
* "Export all storage accounts in my subscription using a resource graph query"
|
|
386
|
+
* "Validate Terraform files in ./my-terraform-folder against Azure security policies"
|
|
387
|
+
* "Validate my Terraform plan file against Azure-Proactive-Resiliency-Library-v2 policies"
|
|
388
|
+
|
|
375
389
|
### 🏛️ Azure Well-Architected Framework
|
|
376
390
|
|
|
377
391
|
* "List all services with Well-Architected Framework guidance"
|
|
@@ -429,6 +443,7 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
|
|
|
429
443
|
- 💾 **Azure Storage** - Blob storage
|
|
430
444
|
- **Azure Storage Sync** - Azure File Sync management operations
|
|
431
445
|
- 📋 **Azure Subscription** - Subscription management
|
|
446
|
+
- 🏗️ **Azure Terraform** - Terraform provider documentation, Azure Verified Modules, resource export, and policy validation
|
|
432
447
|
- 🏗️ **Azure Terraform Best Practices** - Infrastructure as code guidance
|
|
433
448
|
- 🖥️ **Azure Virtual Desktop** - Virtual desktop infrastructure
|
|
434
449
|
- 🏛️ **Azure Well-Architected Framework** - Architectural best practices and design patterns
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.6",
|
|
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-
|
|
37
|
-
"@azure/mcp-darwin-
|
|
38
|
-
"@azure/mcp-
|
|
39
|
-
"@azure/mcp-
|
|
40
|
-
"@azure/mcp-
|
|
41
|
-
"@azure/mcp-
|
|
36
|
+
"@azure/mcp-win32-arm64": "3.0.0-beta.6",
|
|
37
|
+
"@azure/mcp-darwin-x64": "3.0.0-beta.6",
|
|
38
|
+
"@azure/mcp-linux-x64": "3.0.0-beta.6",
|
|
39
|
+
"@azure/mcp-linux-arm64": "3.0.0-beta.6",
|
|
40
|
+
"@azure/mcp-win32-x64": "3.0.0-beta.6",
|
|
41
|
+
"@azure/mcp-darwin-arm64": "3.0.0-beta.6"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|