@azure/mcp-darwin-arm64 3.0.0-beta.3 → 3.0.0-beta.30
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 +119 -11
- package/dist/Azure.Mcp.Tools.AzureMigrate.xml +35 -402
- package/dist/Instrumentation/Resources/concepts/dotnet/azure-monitor-distro.md +1 -1
- package/dist/Instrumentation/Resources/examples/dotnet/aspnetcore-distro-setup.md +1 -1
- package/dist/azmcp +0 -0
- package/package.json +4 -4
- package/dist/appsettings.json +0 -5
package/README.md
CHANGED
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP specification](https://modelcontextprotocol.io) to create a seamless connection between AI agents and Azure services. Azure MCP Server can be used alone or with the [GitHub Copilot for Azure extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azure-github-copilot) in VS Code.
|
|
5
5
|
## Table of Contents
|
|
6
6
|
- [Overview](#overview)
|
|
7
|
-
- [
|
|
7
|
+
- [Local Setup](#local-setup)
|
|
8
|
+
- [Remote Setup](#remote-setup)
|
|
8
9
|
- [Usage](#usage)
|
|
9
10
|
- [Getting Started](#getting-started)
|
|
10
11
|
- [Sovereign Cloud Support](#sovereign-cloud-support)
|
|
@@ -27,14 +28,14 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
27
28
|
|
|
28
29
|
**Azure MCP Server** supercharges your agents with Azure context across **40+ different Azure services**.
|
|
29
30
|
|
|
30
|
-
#
|
|
31
|
+
# Local Setup
|
|
31
32
|
- To use Azure MCP server from node one must have Node.js (LTS) installed and available on your system PATH — this provides both `npm` and `npx`. We recommend Node.js 20 LTS or later. To verify your installation run: `node --version`, `npm --version`, and `npx --version`.
|
|
32
33
|
- Configure the `mcp.json` file with the following:
|
|
33
34
|
|
|
34
35
|
```json
|
|
35
36
|
{
|
|
36
37
|
"mcpServers": {
|
|
37
|
-
"
|
|
38
|
+
"azure-mcp-server": {
|
|
38
39
|
"command": "npx",
|
|
39
40
|
"args": [
|
|
40
41
|
"-y",
|
|
@@ -54,7 +55,7 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
54
55
|
| **VS Code** | `.vscode/mcp.json` (workspace)<br>`settings.json` (user) | [VS Code MCP Documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) |
|
|
55
56
|
| **Visual Studio** | `.mcp.json` (solution/workspace) | [Visual Studio MCP Setup](https://learn.microsoft.com/visualstudio/ide/mcp-servers?view=vs-2022) |
|
|
56
57
|
| **GitHub Copilot CLI** | `~/.copilot/mcp-config.json` | [Copilot CLI MCP Configuration](#github-copilot-cli-configuration) |
|
|
57
|
-
| **Claude Code** | `~/.claude.json` or `.mcp.json` (project) | [Claude Code MCP Configuration](https://
|
|
58
|
+
| **Claude Code** | `~/.claude.json` or `.mcp.json` (project) | [Claude Code MCP Configuration](https://code.claude.com/docs/en/mcp-quickstart#add-a-local-server) |
|
|
58
59
|
| **Eclipse IDE** | GitHub Copilot Chat -> Configure Tools -> MCP Servers | [Eclipse MCP Documentation](https://docs.github.com/en/copilot/how-tos/provide-context/use-mcp/extend-copilot-chat-with-mcp#configuring-mcp-servers-in-eclipse) |
|
|
59
60
|
| **IntelliJ IDEA** | Built-in MCP server (2025.2+)<br>Settings > Tools > MCP Server | [IntelliJ MCP Documentation](https://www.jetbrains.com/help/ai-assistant/mcp.html) |
|
|
60
61
|
| **Cursor** | `~/.cursor/mcp.json` or `.cursor/mcp.json` | [Cursor MCP Documentation](https://docs.cursor.com/context/model-context-protocol) |
|
|
@@ -62,12 +63,11 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
62
63
|
| **Amazon Q Developer** | `~/.aws/amazonq/mcp.json` (global)<br>`.amazonq/mcp.json` (workspace) | [AWS Q Developer MCP Guide](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/qdev-mcp.html) |
|
|
63
64
|
| **Claude Desktop** | `~/.claude/claude_desktop_config.json` (macOS)<br>`%APPDATA%\Claude\claude_desktop_config.json` (Windows) | [Claude Desktop MCP Setup](https://support.claude.com/en/articles/10949351-getting-started-with-local-mcp-servers-on-claude-desktop) |
|
|
64
65
|
|
|
65
|
-
|
|
66
|
+
# Remote Setup
|
|
66
67
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
Check out the remote hosting [azd templates](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/azd-templates/README.md) for deployment options.
|
|
68
|
+
Host the Azure MCP Server as a remote endpoint when your client requires HTTP-based MCP servers (for example, Microsoft Foundry and Microsoft Copilot Studio) or when you want to share a single deployment across users and environments. The server can be self-hosted on [Azure Container Apps](https://learn.microsoft.com/azure/container-apps/overview).
|
|
70
69
|
|
|
70
|
+
See the remote hosting [azd templates](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/azd-templates/README.md) for deployment options.
|
|
71
71
|
|
|
72
72
|
# Usage
|
|
73
73
|
|
|
@@ -88,7 +88,7 @@ Azure MCP Server supports connecting to Azure sovereign clouds. By default, it a
|
|
|
88
88
|
|
|
89
89
|
| Cloud | Aliases |
|
|
90
90
|
|-------|---------|
|
|
91
|
-
| Azure Public Cloud | `AzureCloud`, `AzurePublicCloud`, `Public`, `AzurePublic` |
|
|
91
|
+
| Azure Public Cloud | `AzureCloud`, `AzurePublicCloud`, `Public`, `AzurePublic` |
|
|
92
92
|
| Azure China Cloud | `AzureChinaCloud`, `China`, `AzureChina` |
|
|
93
93
|
| Azure US Government | `AzureUSGovernment`, `USGov`, `AzureUSGovernmentCloud`, `USGovernment` |
|
|
94
94
|
|
|
@@ -137,6 +137,8 @@ For full configuration options, see the [Sovereign Clouds documentation](https:/
|
|
|
137
137
|
### 📊 Azure Advisor
|
|
138
138
|
|
|
139
139
|
* "List my Advisor recommendations"
|
|
140
|
+
* "Apply Advisor recommendations to IaaC files"
|
|
141
|
+
* "List all Advisor recommendation types from catalog"
|
|
140
142
|
|
|
141
143
|
### 🔎 Azure AI Search
|
|
142
144
|
|
|
@@ -174,6 +176,26 @@ For full configuration options, see the [Sovereign Clouds documentation](https:/
|
|
|
174
176
|
* "Delete application setting 'LogLevel' from my 'my-webapp' in 'my-resource-group'"
|
|
175
177
|
* "List the deployments for web app 'my-webapp' in 'my-resource-group'"
|
|
176
178
|
* "Get the deployment 'deployment-id' for web app 'my-webapp' in 'my-resource-group'"
|
|
179
|
+
* "List the diagnostic detectors for web app 'my-webapp' in 'my-resource-group'"
|
|
180
|
+
* "Diagnose the web app 'my-webapp' with detector 'detector-name' in 'my-resource-group'"
|
|
181
|
+
* "Start the web app 'my-webapp' in 'my-resource-group'"
|
|
182
|
+
* "Stop the web app 'my-webapp' in 'my-resource-group'"
|
|
183
|
+
* "Restart the web app 'my-webapp' in 'my-resource-group'"
|
|
184
|
+
* "Soft restart the web app 'my-webapp' in 'my-resource-group' waiting for restart to complete"
|
|
185
|
+
|
|
186
|
+
### 🛡️ Azure Backup
|
|
187
|
+
|
|
188
|
+
* "Create a Recovery Services vault named 'myvault' in resource group 'myRG' in eastus with vault-type 'rsv'"
|
|
189
|
+
* "Get details of backup vault 'myvault' in resource group 'myRG'"
|
|
190
|
+
* "Create a backup policy for Azure VMs in vault 'myvault'"
|
|
191
|
+
* "Update backup policy schedule time to 04:00 in vault 'myvault'"
|
|
192
|
+
* "List protectable items in my backup vault"
|
|
193
|
+
* "Check backup status for my Azure resource in eastus"
|
|
194
|
+
* "Get recovery points for a protected item"
|
|
195
|
+
* "Find unprotected resources in my subscription"
|
|
196
|
+
* "Configure soft delete to 'AlwaysOn' and immutability to 'Locked' on my vault"
|
|
197
|
+
* "Enable cross-region restore on my vault"
|
|
198
|
+
* "Restore a soft-deleted backup item in vault 'myvault' for datasource '/subscriptions/.../virtualMachines/myvm'"
|
|
177
199
|
|
|
178
200
|
### 🖥️ Azure CLI Generate
|
|
179
201
|
|
|
@@ -225,6 +247,10 @@ Example prompts that generate Azure CLI commands:
|
|
|
225
247
|
* "Update VMSS 'my-vmss' capacity to 5 instances"
|
|
226
248
|
* "Delete virtual machine 'my-vm' in resource group 'my-resource-group'"
|
|
227
249
|
* "Force delete VM 'my-vm' in resource group 'my-rg' using force-deletion"
|
|
250
|
+
* "Start VM 'my-vm' in resource group 'my-rg'"
|
|
251
|
+
* "Stop VM 'my-vm' in resource group 'my-rg'"
|
|
252
|
+
* "Deallocate VM 'my-vm' in resource group 'my-rg' to stop billing"
|
|
253
|
+
* "Restart VM 'my-vm' in resource group 'my-rg'"
|
|
228
254
|
* "Delete virtual machine scale set 'my-vmss' in resource group 'my-resource-group'"
|
|
229
255
|
* "Force delete VMSS 'my-vmss' in resource group 'my-rg' using force-deletion"
|
|
230
256
|
|
|
@@ -248,6 +274,11 @@ Example prompts that generate Azure CLI commands:
|
|
|
248
274
|
|
|
249
275
|
* "Show me all my Cosmos DB databases"
|
|
250
276
|
* "List containers in my Cosmos DB database"
|
|
277
|
+
* "Infer the schema of container 'items' in database 'mydb' for Cosmos DB account 'myaccount'"
|
|
278
|
+
* "Show me the 15 most recent documents in container 'items' of database 'mydb' in Cosmos DB account 'myaccount'"
|
|
279
|
+
* "Get the document with id '123' from container 'items' in database 'mydb' of Cosmos DB account 'myaccount'"
|
|
280
|
+
* "Search documents in container 'items' from database 'mydb' where 'description' contains 'wireless headphones'"
|
|
281
|
+
* "Find documents similar to 'noise cancelling earbuds' in container 'items' of database 'mydb' using vector property 'embedding'"
|
|
251
282
|
|
|
252
283
|
### 🧮 Azure Data Explorer
|
|
253
284
|
|
|
@@ -286,6 +317,22 @@ Example prompts that generate Azure CLI commands:
|
|
|
286
317
|
* "Get provisioning recommendations for my file share workload"
|
|
287
318
|
* "Get usage data and metrics for my file share"
|
|
288
319
|
|
|
320
|
+
### 💡 Azure Insights
|
|
321
|
+
|
|
322
|
+
* "Generate insights from my current subscription"
|
|
323
|
+
* "Summarize what's deployed across my Azure environment and highlight notable patterns"
|
|
324
|
+
* "Analyze my tenant and give me insights about the overall infrastructure"
|
|
325
|
+
* "What can you tell me about my existing Azure environment?"
|
|
326
|
+
* "Analyze subscription <subscription_id> for architectural patterns"
|
|
327
|
+
* "Analyze my Azure infrastructure and surface patterns to help me plan my next project"
|
|
328
|
+
* "Generate insights about my Azure environment to help me plan a new data analytics platform"
|
|
329
|
+
* "What insights can you derive about my subscription to help me plan a containerized microservices workload on AKS?"
|
|
330
|
+
|
|
331
|
+
### 🌐 Azure IoT Hub
|
|
332
|
+
|
|
333
|
+
* "Show me IoT Hub 'my-iot-hub' in resource group 'my-resource-group' of my subscription 'my-subscription'"
|
|
334
|
+
* "Get details for IoT Hub 'my-iot-hub' in resource group 'my-resource-group' of my subscription 'my-subscription'"
|
|
335
|
+
|
|
289
336
|
### 🔑 Azure Key Vault
|
|
290
337
|
|
|
291
338
|
* "List all secrets in my key vault 'my-vault'"
|
|
@@ -313,6 +360,8 @@ Example prompts that generate Azure CLI commands:
|
|
|
313
360
|
### 📊 Azure Monitor
|
|
314
361
|
|
|
315
362
|
* "Query my Log Analytics workspace"
|
|
363
|
+
* "List my Azure Monitor Health Models"
|
|
364
|
+
* "Get details for my Azure Monitor Health Model 'my-health-model'"
|
|
316
365
|
|
|
317
366
|
### 🧭 Azure Monitor Instrumentation (under Azure Monitor)
|
|
318
367
|
|
|
@@ -345,6 +394,27 @@ Example prompts that generate Azure CLI commands:
|
|
|
345
394
|
* "Show me details about my Azure SQL server 'myserver'"
|
|
346
395
|
* "Delete my Azure SQL server 'myserver'"
|
|
347
396
|
|
|
397
|
+
### 🤖 Azure SRE Agent
|
|
398
|
+
|
|
399
|
+
* "List my Azure SRE Agent resources"
|
|
400
|
+
* "Show me the SRE sub-agent named 'incident-bot' on agent 'sre-prod'"
|
|
401
|
+
* "Create a new SRE sub-agent named 'incident-bot' with these instructions on agent 'sre-prod'"
|
|
402
|
+
* "List the connectors registered on SRE Agent 'sre-prod'"
|
|
403
|
+
* "Register a Kusto connector on SRE Agent 'sre-prod' pointing at cluster 'https://help.kusto.windows.net'"
|
|
404
|
+
* "Register an MCP connector on SRE Agent 'sre-prod' for the Azure MCP server"
|
|
405
|
+
* "List the safety hooks configured on SRE Agent 'sre-prod'"
|
|
406
|
+
* "Activate the 'pre-prod-approval' hook for thread 'thread-123' on SRE Agent 'sre-prod'"
|
|
407
|
+
* "Create a new investigation thread on SRE Agent 'sre-prod' and ask it to look into elevated 5xx in payments-api"
|
|
408
|
+
* "Send a follow-up message to thread 'thread-123' on SRE Agent 'sre-prod'"
|
|
409
|
+
* "Run an autonomous investigation on SRE Agent 'sre-prod' with up to 20 iterations"
|
|
410
|
+
* "List scheduled tasks on SRE Agent 'sre-prod'"
|
|
411
|
+
* "Create a scheduled task on SRE Agent 'sre-prod' that runs every 15 minutes"
|
|
412
|
+
* "List active incidents on SRE Agent 'sre-prod'"
|
|
413
|
+
* "Declare an incident on SRE Agent 'sre-prod' for elevated error rates"
|
|
414
|
+
* "Generate a remediation workflow on SRE Agent 'sre-prod' from the latest investigation"
|
|
415
|
+
* "Search SRE Agent 'sre-prod' memories for prior occurrences of this alert"
|
|
416
|
+
* "Produce a remediation plan on SRE Agent 'sre-prod' for incident 'inc-42'"
|
|
417
|
+
|
|
348
418
|
### 💾 Azure Storage
|
|
349
419
|
|
|
350
420
|
* "List my Azure storage accounts"
|
|
@@ -359,6 +429,38 @@ Example prompts that generate Azure CLI commands:
|
|
|
359
429
|
* "Turn off DDoS protection in my Platform Landing Zone"
|
|
360
430
|
* "Turn off Bastion host in my Platform Landing Zone"
|
|
361
431
|
|
|
432
|
+
### 🛡️ Azure Resilience Management
|
|
433
|
+
|
|
434
|
+
* "List all resilience goal templates in service group 'my-service-group'"
|
|
435
|
+
* "Get the details of goal template 'my-template' in service group 'my-service-group'"
|
|
436
|
+
* "List all resilience goal assignments in service group 'my-service-group'"
|
|
437
|
+
* "List the resources of goal assignment 'my-assignment' in service group 'my-service-group'"
|
|
438
|
+
* "List my resilience usage plans in resource group 'my-rg'"
|
|
439
|
+
* "List the enrollments of usage plan 'my-plan' in resource group 'my-rg'"
|
|
440
|
+
* "List all resilience recovery plans in service group 'my-service-group'"
|
|
441
|
+
* "Get the recovery plan 'my-recovery-plan' in service group 'my-service-group'"
|
|
442
|
+
* "List the recovery jobs of recovery plan 'my-recovery-plan' in service group 'my-service-group'"
|
|
443
|
+
|
|
444
|
+
### Azure Resource Manager
|
|
445
|
+
|
|
446
|
+
* Use Azure resource graph to query Azure resources
|
|
447
|
+
* Create, view and cancel ARM template deployments
|
|
448
|
+
|
|
449
|
+
### Azure Terraform
|
|
450
|
+
|
|
451
|
+
* "Get the documentation for azurerm_virtual_network"
|
|
452
|
+
* "Show me the arguments for azurerm_storage_account"
|
|
453
|
+
* "Get AzAPI documentation for Microsoft.Storage/storageAccounts"
|
|
454
|
+
* "Get AzAPI docs for Microsoft.Compute/virtualMachines with API version 2024-07-01"
|
|
455
|
+
* "List all available Azure Verified Modules"
|
|
456
|
+
* "Show all versions of avm-res-network-virtualnetwork"
|
|
457
|
+
* "Get the documentation for avm-res-storage-storageaccount version 0.1.0"
|
|
458
|
+
* "Get the documentation for the avm-ptn-aiml-ai-foundry pattern module"
|
|
459
|
+
* "Export all resources in resource group my-rg to Terraform"
|
|
460
|
+
* "Export all storage accounts in my subscription using a resource graph query"
|
|
461
|
+
* "Validate Terraform files in ./my-terraform-folder against Azure security policies"
|
|
462
|
+
* "Validate my Terraform plan file against Azure-Proactive-Resiliency-Library-v2 policies"
|
|
463
|
+
|
|
362
464
|
### 🏛️ Azure Well-Architected Framework
|
|
363
465
|
|
|
364
466
|
* "List all services with Well-Architected Framework guidance"
|
|
@@ -368,7 +470,7 @@ Example prompts that generate Azure CLI commands:
|
|
|
368
470
|
|
|
369
471
|
## Complete List of Supported Azure Services
|
|
370
472
|
|
|
371
|
-
The Azure MCP Server provides tools for interacting with **
|
|
473
|
+
The Azure MCP Server provides tools for interacting with **44+ Azure service areas**:
|
|
372
474
|
|
|
373
475
|
- 🧮 **Microsoft Foundry** - AI model management, AI model deployment, and knowledge index management
|
|
374
476
|
- 📊 **Azure Advisor** - Advisor recommendations
|
|
@@ -376,6 +478,7 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
|
|
|
376
478
|
- 🎤 **Azure AI Services Speech** - Speech-to-text recognition and text-to-speech synthesis
|
|
377
479
|
- ⚙️ **Azure App Configuration** - Configuration management
|
|
378
480
|
- 🕸️ **Azure App Service** - Web app hosting
|
|
481
|
+
- 🛡️ **Azure Backup** - Recovery Services vault management, backup policies, protection, jobs, recovery points, governance, and disaster recovery
|
|
379
482
|
- 🛡️ **Azure Best Practices** - Secure, production-grade guidance
|
|
380
483
|
- 🖥️ **Azure CLI Generate** - Generate Azure CLI commands from natural language
|
|
381
484
|
- 📞 **Azure Communication Services** - SMS messaging and communication
|
|
@@ -391,6 +494,8 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
|
|
|
391
494
|
- 📊 **Azure Event Grid** - Event routing and management
|
|
392
495
|
- 📁 **Azure File Shares** - Azure managed file share operations
|
|
393
496
|
- ⚡ **Azure Functions** - Function App management and functions project files, language support, and templates source code
|
|
497
|
+
- 💡 **Azure Insights** - Derive infrastructure insights from Azure Resource Graph patterns
|
|
498
|
+
- 🌐 **Azure IoT Hub** - IoT Hub resource discovery and details
|
|
394
499
|
- 🔑 **Azure Key Vault** - Secrets, keys, and certificates
|
|
395
500
|
- ☸️ **Azure Kubernetes Service (AKS)** - Container orchestration
|
|
396
501
|
- 📦 **Azure Load Testing** - Performance testing
|
|
@@ -398,13 +503,14 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
|
|
|
398
503
|
- 🗃️ **Azure Managed Lustre** - High-performance Lustre filesystem operations
|
|
399
504
|
- 🏪 **Azure Marketplace** - Product discovery
|
|
400
505
|
- 🔄 **Azure Migrate** - Platform Landing Zone generation and modification guidance
|
|
401
|
-
- 📈 **Azure Monitor** - Logging, metrics, health monitoring, and instrumentation onboarding/migration workflow for local applications
|
|
506
|
+
- 📈 **Azure Monitor** - Logging, metrics, health models, health monitoring, and instrumentation onboarding/migration workflow for local applications
|
|
402
507
|
- ⚖️ **Azure Policy** - Policies set to enforce organizational standards
|
|
403
508
|
- ⚙️ **Azure Native ISV Services** - Third-party integrations
|
|
404
509
|
- 🛡️ **Azure Quick Review CLI** - Compliance scanning
|
|
405
510
|
- 📊 **Azure Quota** - Resource quota and usage management
|
|
406
511
|
- 🎭 **Azure RBAC** - Access control management
|
|
407
512
|
- 🔴 **Azure Redis Cache** - In-memory data store
|
|
513
|
+
- 🛡️ **Azure Resilience Management** - Resilience goal templates, goal assignments, goal resources, usage plans, usage plan enrollments, recovery plans, recovery plan resources, recovery jobs, and recovery job resources
|
|
408
514
|
- 🏗️ **Azure Resource Groups** - Resource organization
|
|
409
515
|
- 🚌 **Azure Service Bus** - Message queuing
|
|
410
516
|
- 🧵 **Azure Service Fabric** - Managed cluster node operations
|
|
@@ -412,9 +518,11 @@ The Azure MCP Server provides tools for interacting with **43+ Azure service are
|
|
|
412
518
|
- 🗄️ **Azure SQL Database** - Relational database management
|
|
413
519
|
- 🗄️ **Azure SQL Elastic Pool** - Database resource sharing
|
|
414
520
|
- 🗄️ **Azure SQL Server** - Server administration
|
|
521
|
+
- 🤖 **Azure SRE Agent** - SRE Agent investigations, sub-agents, connectors, hooks, threads, scheduled tasks, incidents, workflows, memories, and remediation plans
|
|
415
522
|
- 💾 **Azure Storage** - Blob storage
|
|
416
523
|
- **Azure Storage Sync** - Azure File Sync management operations
|
|
417
524
|
- 📋 **Azure Subscription** - Subscription management
|
|
525
|
+
- 🏗️ **Azure Terraform** - Terraform provider documentation, Azure Verified Modules, resource export, and policy validation
|
|
418
526
|
- 🏗️ **Azure Terraform Best Practices** - Infrastructure as code guidance
|
|
419
527
|
- 🖥️ **Azure Virtual Desktop** - Virtual desktop infrastructure
|
|
420
528
|
- 🏛️ **Azure Well-Architected Framework** - Architectural best practices and design patterns
|
|
@@ -70,11 +70,6 @@
|
|
|
70
70
|
<member name="M:Azure.Mcp.Tools.AzureMigrate.Commands.AzureMigrateJsonContext.GetTypeInfo(System.Type)">
|
|
71
71
|
<inheritdoc/>
|
|
72
72
|
</member>
|
|
73
|
-
<member name="T:Azure.Mcp.Tools.AzureMigrate.Commands.BaseAzureMigrateCommand`1">
|
|
74
|
-
<summary>
|
|
75
|
-
Base command for all Azure Migrate commands.
|
|
76
|
-
</summary>
|
|
77
|
-
</member>
|
|
78
73
|
<member name="T:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.GetGuidanceCommand">
|
|
79
74
|
<summary>
|
|
80
75
|
Command to get platform landing zone modification guidance and recommendations.
|
|
@@ -85,62 +80,35 @@
|
|
|
85
80
|
Command to get platform landing zone modification guidance and recommendations.
|
|
86
81
|
</summary>
|
|
87
82
|
</member>
|
|
88
|
-
<member name="
|
|
89
|
-
<inheritdoc/>
|
|
90
|
-
</member>
|
|
91
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.GetGuidanceCommand.Name">
|
|
92
|
-
<inheritdoc/>
|
|
93
|
-
</member>
|
|
94
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.GetGuidanceCommand.Description">
|
|
95
|
-
<inheritdoc/>
|
|
96
|
-
</member>
|
|
97
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.GetGuidanceCommand.Title">
|
|
98
|
-
<inheritdoc/>
|
|
99
|
-
</member>
|
|
100
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.GetGuidanceCommand.Metadata">
|
|
83
|
+
<member name="M:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.GetGuidanceCommand.ExecuteAsync(Microsoft.Mcp.Core.Models.Command.CommandContext,Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.GetGuidanceOptions,System.Threading.CancellationToken)">
|
|
101
84
|
<inheritdoc/>
|
|
102
85
|
</member>
|
|
103
|
-
<member name="
|
|
104
|
-
<
|
|
86
|
+
<member name="T:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.GetGuidanceCommand.GetGuidanceCommandResult">
|
|
87
|
+
<summary>
|
|
88
|
+
Represents the result of the GetGuidanceCommand.
|
|
89
|
+
</summary>
|
|
90
|
+
<param name="Guidance">The guidance.</param>
|
|
105
91
|
</member>
|
|
106
|
-
<member name="M:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.GetGuidanceCommand.
|
|
107
|
-
<
|
|
92
|
+
<member name="M:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.GetGuidanceCommand.GetGuidanceCommandResult.#ctor(System.String)">
|
|
93
|
+
<summary>
|
|
94
|
+
Represents the result of the GetGuidanceCommand.
|
|
95
|
+
</summary>
|
|
96
|
+
<param name="Guidance">The guidance.</param>
|
|
108
97
|
</member>
|
|
109
|
-
<member name="
|
|
110
|
-
<
|
|
98
|
+
<member name="P:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.GetGuidanceCommand.GetGuidanceCommandResult.Guidance">
|
|
99
|
+
<summary>The guidance.</summary>
|
|
111
100
|
</member>
|
|
112
101
|
<member name="T:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand">
|
|
113
102
|
<summary>
|
|
114
103
|
Command to generate and download platform landing zone configurations, update parameters, check existing platform landing zones, and view status.
|
|
115
104
|
</summary>
|
|
116
105
|
</member>
|
|
117
|
-
<member name="M:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand.#ctor(Microsoft.Extensions.Logging.ILogger{Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand},Azure.Mcp.Tools.AzureMigrate.Services.IPlatformLandingZoneService,Azure.Mcp.Tools.AzureMigrate.Helpers.AzureMigrateProjectHelper)">
|
|
106
|
+
<member name="M:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand.#ctor(Microsoft.Extensions.Logging.ILogger{Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand},Azure.Mcp.Tools.AzureMigrate.Services.IPlatformLandingZoneService,Azure.Mcp.Tools.AzureMigrate.Helpers.AzureMigrateProjectHelper,Azure.Mcp.Core.Services.Azure.Subscription.ISubscriptionResolver)">
|
|
118
107
|
<summary>
|
|
119
108
|
Command to generate and download platform landing zone configurations, update parameters, check existing platform landing zones, and view status.
|
|
120
109
|
</summary>
|
|
121
110
|
</member>
|
|
122
|
-
<member name="
|
|
123
|
-
<inheritdoc/>
|
|
124
|
-
</member>
|
|
125
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand.Name">
|
|
126
|
-
<inheritdoc/>
|
|
127
|
-
</member>
|
|
128
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand.Title">
|
|
129
|
-
<inheritdoc/>
|
|
130
|
-
</member>
|
|
131
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand.Description">
|
|
132
|
-
<inheritdoc/>
|
|
133
|
-
</member>
|
|
134
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand.Metadata">
|
|
135
|
-
<inheritdoc/>
|
|
136
|
-
</member>
|
|
137
|
-
<member name="M:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand.RegisterOptions(System.CommandLine.Command)">
|
|
138
|
-
<inheritdoc/>
|
|
139
|
-
</member>
|
|
140
|
-
<member name="M:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand.BindOptions(System.CommandLine.ParseResult)">
|
|
141
|
-
<inheritdoc/>
|
|
142
|
-
</member>
|
|
143
|
-
<member name="M:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand.ExecuteAsync(Microsoft.Mcp.Core.Models.Command.CommandContext,System.CommandLine.ParseResult,System.Threading.CancellationToken)">
|
|
111
|
+
<member name="M:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand.ExecuteAsync(Microsoft.Mcp.Core.Models.Command.CommandContext,Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions,System.Threading.CancellationToken)">
|
|
144
112
|
<inheritdoc/>
|
|
145
113
|
</member>
|
|
146
114
|
<member name="T:Azure.Mcp.Tools.AzureMigrate.Commands.PlatformLandingZone.RequestCommand.RequestCommandResult">
|
|
@@ -457,166 +425,6 @@
|
|
|
457
425
|
Represents the context for a platform landing zone generation session.
|
|
458
426
|
</summary>
|
|
459
427
|
</member>
|
|
460
|
-
<member name="T:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions">
|
|
461
|
-
<summary>
|
|
462
|
-
Static option definitions for Azure Migrate commands.
|
|
463
|
-
</summary>
|
|
464
|
-
</member>
|
|
465
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.TopicName">
|
|
466
|
-
<summary>
|
|
467
|
-
The topic option name.
|
|
468
|
-
</summary>
|
|
469
|
-
</member>
|
|
470
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.ActionName">
|
|
471
|
-
<summary>
|
|
472
|
-
The action option name.
|
|
473
|
-
</summary>
|
|
474
|
-
</member>
|
|
475
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.RegionTypeName">
|
|
476
|
-
<summary>
|
|
477
|
-
The region type option name.
|
|
478
|
-
</summary>
|
|
479
|
-
</member>
|
|
480
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.FireWallTypeName">
|
|
481
|
-
<summary>
|
|
482
|
-
The firewall type option name.
|
|
483
|
-
</summary>
|
|
484
|
-
</member>
|
|
485
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.NetworkArchitectureName">
|
|
486
|
-
<summary>
|
|
487
|
-
The network architecture option name.
|
|
488
|
-
</summary>
|
|
489
|
-
</member>
|
|
490
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.IdentitySubscriptionIdName">
|
|
491
|
-
<summary>
|
|
492
|
-
The identity subscription ID option name.
|
|
493
|
-
</summary>
|
|
494
|
-
</member>
|
|
495
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.ManagementSubscriptionIdName">
|
|
496
|
-
<summary>
|
|
497
|
-
The management subscription ID option name.
|
|
498
|
-
</summary>
|
|
499
|
-
</member>
|
|
500
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.ConnectivitySubscriptionIdName">
|
|
501
|
-
<summary>
|
|
502
|
-
The connectivity subscription ID option name.
|
|
503
|
-
</summary>
|
|
504
|
-
</member>
|
|
505
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.SecuritySubscriptionIdName">
|
|
506
|
-
<summary>
|
|
507
|
-
The security subscription ID option name.
|
|
508
|
-
</summary>
|
|
509
|
-
</member>
|
|
510
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.RegionsName">
|
|
511
|
-
<summary>
|
|
512
|
-
The regions option name.
|
|
513
|
-
</summary>
|
|
514
|
-
</member>
|
|
515
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.EnvironmentNameName">
|
|
516
|
-
<summary>
|
|
517
|
-
The environment name option name.
|
|
518
|
-
</summary>
|
|
519
|
-
</member>
|
|
520
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.VersionControlSystemName">
|
|
521
|
-
<summary>
|
|
522
|
-
The version control system option name.
|
|
523
|
-
</summary>
|
|
524
|
-
</member>
|
|
525
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.MigrateProjectNameName">
|
|
526
|
-
<summary>
|
|
527
|
-
The migrate project name option name.
|
|
528
|
-
</summary>
|
|
529
|
-
</member>
|
|
530
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.OrganizationNameName">
|
|
531
|
-
<summary>
|
|
532
|
-
The organization name option name.
|
|
533
|
-
</summary>
|
|
534
|
-
</member>
|
|
535
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.MigrateProjectResourceIdName">
|
|
536
|
-
<summary>
|
|
537
|
-
The migrate project resource ID option name.
|
|
538
|
-
</summary>
|
|
539
|
-
</member>
|
|
540
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.Topic">
|
|
541
|
-
<summary>
|
|
542
|
-
The user's question or modification request for landing zone guidance.
|
|
543
|
-
</summary>
|
|
544
|
-
</member>
|
|
545
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.Action">
|
|
546
|
-
<summary>
|
|
547
|
-
The action to perform (update, check, generate, download, status).
|
|
548
|
-
</summary>
|
|
549
|
-
</member>
|
|
550
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.RegionType">
|
|
551
|
-
<summary>
|
|
552
|
-
The region type (single or multi).
|
|
553
|
-
</summary>
|
|
554
|
-
</member>
|
|
555
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.FireWallType">
|
|
556
|
-
<summary>
|
|
557
|
-
The firewall type (azurefirewall, nva, or none).
|
|
558
|
-
</summary>
|
|
559
|
-
</member>
|
|
560
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.NetworkArchitecture">
|
|
561
|
-
<summary>
|
|
562
|
-
The network architecture (hubspoke or vwan).
|
|
563
|
-
</summary>
|
|
564
|
-
</member>
|
|
565
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.IdentitySubscriptionId">
|
|
566
|
-
<summary>
|
|
567
|
-
The identity subscription ID (GUID format).
|
|
568
|
-
</summary>
|
|
569
|
-
</member>
|
|
570
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.ManagementSubscriptionId">
|
|
571
|
-
<summary>
|
|
572
|
-
The management subscription ID (GUID format).
|
|
573
|
-
</summary>
|
|
574
|
-
</member>
|
|
575
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.ConnectivitySubscriptionId">
|
|
576
|
-
<summary>
|
|
577
|
-
The connectivity subscription ID (GUID format).
|
|
578
|
-
</summary>
|
|
579
|
-
</member>
|
|
580
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.SecuritySubscriptionId">
|
|
581
|
-
<summary>
|
|
582
|
-
The security subscription ID (GUID format).
|
|
583
|
-
</summary>
|
|
584
|
-
</member>
|
|
585
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.Regions">
|
|
586
|
-
<summary>
|
|
587
|
-
The comma-separated list of Azure regions.
|
|
588
|
-
</summary>
|
|
589
|
-
</member>
|
|
590
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.EnvironmentName">
|
|
591
|
-
<summary>
|
|
592
|
-
The environment name.
|
|
593
|
-
</summary>
|
|
594
|
-
</member>
|
|
595
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.VersionControlSystem">
|
|
596
|
-
<summary>
|
|
597
|
-
The version control system (local, github, or azuredevops).
|
|
598
|
-
</summary>
|
|
599
|
-
</member>
|
|
600
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.MigrateProjectName">
|
|
601
|
-
<summary>
|
|
602
|
-
The migrate project name.
|
|
603
|
-
</summary>
|
|
604
|
-
</member>
|
|
605
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.OrganizationName">
|
|
606
|
-
<summary>
|
|
607
|
-
The organization name.
|
|
608
|
-
</summary>
|
|
609
|
-
</member>
|
|
610
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.AzureMigrateOptionDefinitions.MigrateProjectResourceId">
|
|
611
|
-
<summary>
|
|
612
|
-
The full resource ID of the Azure Migrate project.
|
|
613
|
-
</summary>
|
|
614
|
-
</member>
|
|
615
|
-
<member name="T:Azure.Mcp.Tools.AzureMigrate.Options.BaseAzureMigrateOptions">
|
|
616
|
-
<summary>
|
|
617
|
-
Base options for Azure Migrate commands.
|
|
618
|
-
</summary>
|
|
619
|
-
</member>
|
|
620
428
|
<member name="T:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.GetGuidanceOptions">
|
|
621
429
|
<summary>
|
|
622
430
|
Options for the platform landing zone get guidance command.
|
|
@@ -637,191 +445,6 @@
|
|
|
637
445
|
Gets or sets whether to list all policies by archetype.
|
|
638
446
|
</summary>
|
|
639
447
|
</member>
|
|
640
|
-
<member name="T:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions">
|
|
641
|
-
<summary>
|
|
642
|
-
Static option definitions for Platform Landing Zone commands.
|
|
643
|
-
</summary>
|
|
644
|
-
</member>
|
|
645
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.ScenarioName">
|
|
646
|
-
<summary>
|
|
647
|
-
The scenario option name.
|
|
648
|
-
</summary>
|
|
649
|
-
</member>
|
|
650
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.PolicyNameName">
|
|
651
|
-
<summary>
|
|
652
|
-
The policy name option name.
|
|
653
|
-
</summary>
|
|
654
|
-
</member>
|
|
655
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.ListPoliciesName">
|
|
656
|
-
<summary>
|
|
657
|
-
The list policies option name.
|
|
658
|
-
</summary>
|
|
659
|
-
</member>
|
|
660
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.ActionName">
|
|
661
|
-
<summary>
|
|
662
|
-
The action option name.
|
|
663
|
-
</summary>
|
|
664
|
-
</member>
|
|
665
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.RegionTypeName">
|
|
666
|
-
<summary>
|
|
667
|
-
The region type option name.
|
|
668
|
-
</summary>
|
|
669
|
-
</member>
|
|
670
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.FireWallTypeName">
|
|
671
|
-
<summary>
|
|
672
|
-
The firewall type option name.
|
|
673
|
-
</summary>
|
|
674
|
-
</member>
|
|
675
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.NetworkArchitectureName">
|
|
676
|
-
<summary>
|
|
677
|
-
The network architecture option name.
|
|
678
|
-
</summary>
|
|
679
|
-
</member>
|
|
680
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.IdentitySubscriptionIdName">
|
|
681
|
-
<summary>
|
|
682
|
-
The identity subscription ID option name.
|
|
683
|
-
</summary>
|
|
684
|
-
</member>
|
|
685
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.ManagementSubscriptionIdName">
|
|
686
|
-
<summary>
|
|
687
|
-
The management subscription ID option name.
|
|
688
|
-
</summary>
|
|
689
|
-
</member>
|
|
690
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.ConnectivitySubscriptionIdName">
|
|
691
|
-
<summary>
|
|
692
|
-
The connectivity subscription ID option name.
|
|
693
|
-
</summary>
|
|
694
|
-
</member>
|
|
695
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.SecuritySubscriptionIdName">
|
|
696
|
-
<summary>
|
|
697
|
-
The security subscription ID option name.
|
|
698
|
-
</summary>
|
|
699
|
-
</member>
|
|
700
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.RegionsName">
|
|
701
|
-
<summary>
|
|
702
|
-
The regions option name.
|
|
703
|
-
</summary>
|
|
704
|
-
</member>
|
|
705
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.EnvironmentNameName">
|
|
706
|
-
<summary>
|
|
707
|
-
The environment name option name.
|
|
708
|
-
</summary>
|
|
709
|
-
</member>
|
|
710
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.VersionControlSystemName">
|
|
711
|
-
<summary>
|
|
712
|
-
The version control system option name.
|
|
713
|
-
</summary>
|
|
714
|
-
</member>
|
|
715
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.MigrateProjectNameName">
|
|
716
|
-
<summary>
|
|
717
|
-
The migrate project name option name.
|
|
718
|
-
</summary>
|
|
719
|
-
</member>
|
|
720
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.OrganizationNameName">
|
|
721
|
-
<summary>
|
|
722
|
-
The organization name option name.
|
|
723
|
-
</summary>
|
|
724
|
-
</member>
|
|
725
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.MigrateProjectResourceIdName">
|
|
726
|
-
<summary>
|
|
727
|
-
The migrate project resource ID option name.
|
|
728
|
-
</summary>
|
|
729
|
-
</member>
|
|
730
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.LocationName">
|
|
731
|
-
<summary>
|
|
732
|
-
The location option name.
|
|
733
|
-
</summary>
|
|
734
|
-
</member>
|
|
735
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.Scenario">
|
|
736
|
-
<summary>
|
|
737
|
-
The scenario key for platform landing zone modification.
|
|
738
|
-
</summary>
|
|
739
|
-
</member>
|
|
740
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.PolicyName">
|
|
741
|
-
<summary>
|
|
742
|
-
The policy assignment name for policy-related scenarios.
|
|
743
|
-
</summary>
|
|
744
|
-
</member>
|
|
745
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.ListPolicies">
|
|
746
|
-
<summary>
|
|
747
|
-
List all available policies organized by archetype.
|
|
748
|
-
</summary>
|
|
749
|
-
</member>
|
|
750
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.Action">
|
|
751
|
-
<summary>
|
|
752
|
-
The action to perform (update, check, generate, download, status).
|
|
753
|
-
</summary>
|
|
754
|
-
</member>
|
|
755
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.RegionType">
|
|
756
|
-
<summary>
|
|
757
|
-
The region type (single or multi).
|
|
758
|
-
</summary>
|
|
759
|
-
</member>
|
|
760
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.FireWallType">
|
|
761
|
-
<summary>
|
|
762
|
-
The firewall type (azurefirewall, nva).
|
|
763
|
-
</summary>
|
|
764
|
-
</member>
|
|
765
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.NetworkArchitecture">
|
|
766
|
-
<summary>
|
|
767
|
-
The network architecture (hubspoke or vwan).
|
|
768
|
-
</summary>
|
|
769
|
-
</member>
|
|
770
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.IdentitySubscriptionId">
|
|
771
|
-
<summary>
|
|
772
|
-
The identity subscription ID (GUID format).
|
|
773
|
-
</summary>
|
|
774
|
-
</member>
|
|
775
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.ManagementSubscriptionId">
|
|
776
|
-
<summary>
|
|
777
|
-
The management subscription ID (GUID format).
|
|
778
|
-
</summary>
|
|
779
|
-
</member>
|
|
780
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.ConnectivitySubscriptionId">
|
|
781
|
-
<summary>
|
|
782
|
-
The connectivity subscription ID (GUID format).
|
|
783
|
-
</summary>
|
|
784
|
-
</member>
|
|
785
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.SecuritySubscriptionId">
|
|
786
|
-
<summary>
|
|
787
|
-
The security subscription ID (GUID format).
|
|
788
|
-
</summary>
|
|
789
|
-
</member>
|
|
790
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.Regions">
|
|
791
|
-
<summary>
|
|
792
|
-
The comma-separated list of Azure regions.
|
|
793
|
-
</summary>
|
|
794
|
-
</member>
|
|
795
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.EnvironmentName">
|
|
796
|
-
<summary>
|
|
797
|
-
The environment name.
|
|
798
|
-
</summary>
|
|
799
|
-
</member>
|
|
800
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.VersionControlSystem">
|
|
801
|
-
<summary>
|
|
802
|
-
The version control system (local, github, or azuredevops).
|
|
803
|
-
</summary>
|
|
804
|
-
</member>
|
|
805
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.MigrateProjectName">
|
|
806
|
-
<summary>
|
|
807
|
-
The migrate project name.
|
|
808
|
-
</summary>
|
|
809
|
-
</member>
|
|
810
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.OrganizationName">
|
|
811
|
-
<summary>
|
|
812
|
-
The organization name.
|
|
813
|
-
</summary>
|
|
814
|
-
</member>
|
|
815
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.MigrateProjectResourceId">
|
|
816
|
-
<summary>
|
|
817
|
-
The full resource ID of the Azure Migrate project.
|
|
818
|
-
</summary>
|
|
819
|
-
</member>
|
|
820
|
-
<member name="F:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.PlatformLandingZoneOptionDefinitions.Location">
|
|
821
|
-
<summary>
|
|
822
|
-
The Azure region location for resource creation.
|
|
823
|
-
</summary>
|
|
824
|
-
</member>
|
|
825
448
|
<member name="T:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions">
|
|
826
449
|
<summary>
|
|
827
450
|
Options for the platform landing zone request command.
|
|
@@ -837,7 +460,7 @@
|
|
|
837
460
|
Gets or sets the region type (single or multi).
|
|
838
461
|
</summary>
|
|
839
462
|
</member>
|
|
840
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions.
|
|
463
|
+
<member name="P:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions.FirewallType">
|
|
841
464
|
<summary>
|
|
842
465
|
Gets or sets the firewall type (azurefirewall or nva).
|
|
843
466
|
</summary>
|
|
@@ -862,11 +485,6 @@
|
|
|
862
485
|
Gets or sets the connectivity subscription ID (GUID format).
|
|
863
486
|
</summary>
|
|
864
487
|
</member>
|
|
865
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions.SecuritySubscriptionId">
|
|
866
|
-
<summary>
|
|
867
|
-
Gets or sets the security subscription ID (GUID format).
|
|
868
|
-
</summary>
|
|
869
|
-
</member>
|
|
870
488
|
<member name="P:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions.Regions">
|
|
871
489
|
<summary>
|
|
872
490
|
Gets or sets the comma-separated list of Azure regions.
|
|
@@ -892,14 +510,29 @@
|
|
|
892
510
|
Gets or sets the migrate project name from context.
|
|
893
511
|
</summary>
|
|
894
512
|
</member>
|
|
895
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions.
|
|
513
|
+
<member name="P:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions.Location">
|
|
896
514
|
<summary>
|
|
897
|
-
Gets or sets the
|
|
515
|
+
Gets or sets the Azure region location for resource creation.
|
|
898
516
|
</summary>
|
|
899
517
|
</member>
|
|
900
|
-
<member name="P:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions.
|
|
518
|
+
<member name="P:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions.ResourceGroup">
|
|
901
519
|
<summary>
|
|
902
|
-
Gets or sets the
|
|
520
|
+
Gets or sets the resource group name for resource creation.
|
|
521
|
+
</summary>
|
|
522
|
+
</member>
|
|
523
|
+
<member name="P:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions.Subscription">
|
|
524
|
+
<summary>
|
|
525
|
+
Gets or sets the subscription ID for resource creation.
|
|
526
|
+
</summary>
|
|
527
|
+
</member>
|
|
528
|
+
<member name="P:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions.Tenant">
|
|
529
|
+
<summary>
|
|
530
|
+
Gets or sets the tenant ID for resource creation.
|
|
531
|
+
</summary>
|
|
532
|
+
</member>
|
|
533
|
+
<member name="P:Azure.Mcp.Tools.AzureMigrate.Options.PlatformLandingZone.RequestOptions.RetryPolicy">
|
|
534
|
+
<summary>
|
|
535
|
+
Gets or sets the retry policy options for HTTP requests.
|
|
903
536
|
</summary>
|
|
904
537
|
</member>
|
|
905
538
|
<member name="T:Azure.Mcp.Tools.AzureMigrate.Services.IPlatformLandingZoneGuidanceService">
|
|
@@ -83,7 +83,7 @@ builder.Services.AddOpenTelemetry().UseAzureMonitor(options =>
|
|
|
83
83
|
## Package Reference
|
|
84
84
|
|
|
85
85
|
```xml
|
|
86
|
-
<PackageReference Include="Azure.Monitor.OpenTelemetry.AspNetCore" Version="1.
|
|
86
|
+
<PackageReference Include="Azure.Monitor.OpenTelemetry.AspNetCore" Version="1.4.0" />
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
## When to Use
|
|
@@ -23,7 +23,7 @@ dotnet add package Azure.Monitor.OpenTelemetry.AspNetCore
|
|
|
23
23
|
Or in `.csproj`:
|
|
24
24
|
|
|
25
25
|
```xml
|
|
26
|
-
<PackageReference Include="Azure.Monitor.OpenTelemetry.AspNetCore" Version="1.
|
|
26
|
+
<PackageReference Include="Azure.Monitor.OpenTelemetry.AspNetCore" Version="1.4.0" />
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
## Step 2: Configure in Program.cs
|
package/dist/azmcp
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp-darwin-arm64",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.30",
|
|
4
4
|
"description": "Azure MCP Server - Model Context Protocol implementation for Azure, for darwin on arm64",
|
|
5
5
|
"author": "Microsoft",
|
|
6
6
|
"homepage": "https://github.com/Microsoft/mcp/blob/main/servers/Azure.Mcp.Server#readme",
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"url": "https://github.com/microsoft/mcp/issues"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/microsoft/mcp.git"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": ">=
|
|
21
|
+
"node": ">=22.0.0"
|
|
22
22
|
},
|
|
23
23
|
"main": "./index.js",
|
|
24
24
|
"bin": {
|