@azure/mcp 2.0.0-beta.9 โ 2.0.0
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 +148 -27
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
7
7
|
- [Installation](#installation)
|
|
8
8
|
- [Usage](#usage)
|
|
9
9
|
- [Getting Started](#getting-started)
|
|
10
|
+
- [Sovereign Cloud Support](#sovereign-cloud-support)
|
|
10
11
|
- [What can you do with the Azure MCP Server?](#what-can-you-do-with-the-azure-mcp-server)
|
|
11
12
|
- [Complete List of Supported Azure Services](#complete-list-of-supported-azure-services)
|
|
12
13
|
- [Support and Reference](#support-and-reference)
|
|
@@ -33,7 +34,7 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
33
34
|
```json
|
|
34
35
|
{
|
|
35
36
|
"mcpServers": {
|
|
36
|
-
"
|
|
37
|
+
"Azure MCP Server": {
|
|
37
38
|
"command": "npx",
|
|
38
39
|
"args": [
|
|
39
40
|
"-y",
|
|
@@ -50,28 +51,23 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
50
51
|
**Client-Specific Configuration**
|
|
51
52
|
| IDE | File Location | Documentation Link |
|
|
52
53
|
|-----|---------------|-------------------|
|
|
53
|
-
| **
|
|
54
|
+
| **VS Code** | `.vscode/mcp.json` (workspace)<br>`settings.json` (user) | [VS Code MCP Documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) |
|
|
55
|
+
| **Visual Studio** | `.mcp.json` (solution/workspace) | [Visual Studio MCP Setup](https://learn.microsoft.com/visualstudio/ide/mcp-servers?view=vs-2022) |
|
|
56
|
+
| **GitHub Copilot CLI** | `~/.copilot/mcp-config.json` | [Copilot CLI MCP Configuration](#github-copilot-cli-configuration) |
|
|
54
57
|
| **Claude Code** | `~/.claude.json` or `.mcp.json` (project) | [Claude Code MCP Configuration](https://scottspence.com/posts/configuring-mcp-tools-in-claude-code) |
|
|
55
|
-
| **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) |
|
|
56
|
-
| **Cursor** | `~/.cursor/mcp.json` or `.cursor/mcp.json` | [Cursor MCP Documentation](https://docs.cursor.com/context/model-context-protocol) |
|
|
57
58
|
| **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) |
|
|
58
59
|
| **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) |
|
|
59
|
-
| **
|
|
60
|
-
| **VS Code** | `.vscode/mcp.json` (workspace)<br>`settings.json` (user) | [VS Code MCP Documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) |
|
|
60
|
+
| **Cursor** | `~/.cursor/mcp.json` or `.cursor/mcp.json` | [Cursor MCP Documentation](https://docs.cursor.com/context/model-context-protocol) |
|
|
61
61
|
| **Windsurf** | `~/.codeium/windsurf/mcp_config.json` | [Windsurf Cascade MCP Integration](https://docs.windsurf.com/windsurf/cascade/mcp) |
|
|
62
|
+
| **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
|
+
| **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) |
|
|
62
64
|
|
|
63
65
|
## Remote MCP Server (preview)
|
|
64
66
|
|
|
65
67
|
Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoints. To self-host the Azure MCP Server for use with these platforms, deploy it as a remote MCP server on [Azure Container Apps](https://learn.microsoft.com/azure/container-apps/overview).
|
|
66
68
|
|
|
67
|
-
|
|
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
70
|
|
|
69
|
-
1. Follow the [deployment guide](https://github.com/Azure-Samples/azmcp-foundry-aca-mi) for Microsoft Foundry.
|
|
70
|
-
2. See [Microsoft Foundry's MCP documentation](https://learn.microsoft.com/azure/ai-foundry/agents/how-to/tools/model-context-protocol) for more details.
|
|
71
|
-
|
|
72
|
-
### Microsoft Copilot Studio
|
|
73
|
-
|
|
74
|
-
1. Follow the [deployment guide](https://github.com/Azure-Samples/azmcp-copilot-studio-aca-mi) for Microsoft Copilot Studio.
|
|
75
71
|
|
|
76
72
|
# Usage
|
|
77
73
|
|
|
@@ -86,6 +82,42 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
86
82
|
1. We're building this in the open. Your feedback is much appreciated, and will help us shape the future of the Azure MCP server
|
|
87
83
|
- ๐ [Open an issue in the public repository](https://github.com/microsoft/mcp/issues/new/choose)
|
|
88
84
|
|
|
85
|
+
## Sovereign Cloud Support
|
|
86
|
+
|
|
87
|
+
Azure MCP Server supports connecting to Azure sovereign clouds. By default, it authenticates against the Azure Public Cloud.
|
|
88
|
+
|
|
89
|
+
| Cloud | Aliases |
|
|
90
|
+
|-------|---------|
|
|
91
|
+
| Azure Public Cloud | `AzureCloud`, `AzurePublicCloud`, `Public`, `AzurePublic` |
|
|
92
|
+
| Azure China Cloud | `AzureChinaCloud`, `China`, `AzureChina` |
|
|
93
|
+
| Azure US Government | `AzureUSGovernment`, `USGov`, `AzureUSGovernmentCloud`, `USGovernment` |
|
|
94
|
+
|
|
95
|
+
*_The aliases are case insensitive._
|
|
96
|
+
|
|
97
|
+
Use the `--cloud` option when starting the server, or set the `AZURE_CLOUD` environment variable:
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
# Command line
|
|
101
|
+
azmcp server start --cloud AzureChinaCloud
|
|
102
|
+
|
|
103
|
+
# Environment variable (PowerShell)
|
|
104
|
+
$env:AZURE_CLOUD = "AzureUSGovernment"
|
|
105
|
+
azmcp server start
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Before connecting, authenticate your local tools against the target cloud:
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
# Azure CLI
|
|
112
|
+
az cloud set --name AzureChinaCloud
|
|
113
|
+
az login
|
|
114
|
+
|
|
115
|
+
# Azure PowerShell
|
|
116
|
+
Connect-AzAccount -Environment AzureChinaCloud
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
For full configuration options, see the [Sovereign Clouds documentation](https://github.com/microsoft/mcp/blob/main/docs/sovereign-clouds.md).
|
|
120
|
+
|
|
89
121
|
## What can you do with the Azure MCP Server?
|
|
90
122
|
|
|
91
123
|
โจ The Azure MCP Server supercharges your agents with Azure context. Here are some cool prompts you can try:
|
|
@@ -101,10 +133,10 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
101
133
|
* List Microsoft Foundry agents
|
|
102
134
|
* Connect and query Microsoft Foundry agents
|
|
103
135
|
* Evaluate Microsoft Foundry agents
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
*
|
|
136
|
+
|
|
137
|
+
### ๐ Azure Advisor
|
|
138
|
+
|
|
139
|
+
* "List my Advisor recommendations"
|
|
108
140
|
|
|
109
141
|
### ๐ Azure AI Search
|
|
110
142
|
|
|
@@ -132,15 +164,25 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
132
164
|
|
|
133
165
|
### ๐ธ๏ธ Azure App Service
|
|
134
166
|
|
|
135
|
-
* "
|
|
136
|
-
* "
|
|
137
|
-
* "
|
|
138
|
-
* "Get the details for app
|
|
167
|
+
* "Add a database connection for an App Service web app"
|
|
168
|
+
* "List the web apps in my subscription"
|
|
169
|
+
* "Show me the web apps in my 'my-resource-group' resource group"
|
|
170
|
+
* "Get the details for web app 'my-webapp' in 'my-resource-group'"
|
|
171
|
+
* "Get the application settings for my web app 'my-webapp' in 'my-resource-group'"
|
|
172
|
+
* "Add application setting 'LogLevel' with value 'INFO' to my 'my-webapp' in 'my-resource-group'"
|
|
173
|
+
* "Set application setting 'LogLevel' to 'WARNING' to my 'my-webapp' in 'my-resource-group'"
|
|
174
|
+
* "Delete application setting 'LogLevel' from my 'my-webapp' in 'my-resource-group'"
|
|
175
|
+
* "List the deployments for web app 'my-webapp' in 'my-resource-group'"
|
|
176
|
+
* "Get the deployment 'deployment-id' for web app 'my-webapp' in 'my-resource-group'"
|
|
139
177
|
|
|
140
178
|
### ๐ฅ๏ธ Azure CLI Generate
|
|
141
179
|
|
|
142
180
|
* Generate Azure CLI commands based on user intent
|
|
143
181
|
|
|
182
|
+
Example prompts that generate Azure CLI commands:
|
|
183
|
+
|
|
184
|
+
* "Get the details for app service plan 'my-app-service-plan'"
|
|
185
|
+
|
|
144
186
|
### ๐ฅ๏ธ Azure CLI Install
|
|
145
187
|
|
|
146
188
|
* Get installation instructions for Azure CLI, Azure Developer CLI and Azure Functions Core Tools CLI for your platform.
|
|
@@ -157,7 +199,36 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
157
199
|
* "Send an email from my communication service endpoint with custom sender name and multiple recipients"
|
|
158
200
|
* "Send an email to 'user1@example.com' and 'user2@example.com' with subject 'Team Update' and message 'Please review the attached document.'"
|
|
159
201
|
|
|
160
|
-
###
|
|
202
|
+
### ๐ฅ๏ธ Azure Compute
|
|
203
|
+
|
|
204
|
+
* "List all my managed disks in subscription 'my-subscription'"
|
|
205
|
+
* "Show me all disks in resource group 'my-resource-group'"
|
|
206
|
+
* "Get details of disk 'my-disk' in resource group 'my-resource-group'"
|
|
207
|
+
* "Create a 128 GB Premium_LRS managed disk named 'my-disk' in resource group 'my-resource-group'"
|
|
208
|
+
* "Create a managed disk from snapshot in resource group 'my-resource-group'"
|
|
209
|
+
* "Create a disk 'my-disk' in resource group 'my-resource-group' with tags env=prod team=infra"
|
|
210
|
+
* "Delete managed disk 'my-disk' in resource group 'my-resource-group'"
|
|
211
|
+
* "Update disk 'my-disk' in resource group 'my-resource-group' to 256 GB"
|
|
212
|
+
* "Change the SKU of disk 'my-disk' to Premium_LRS"
|
|
213
|
+
* "Set the IOPS limit on ultra disk 'my-disk' in resource group 'my-resource-group' to 10000"
|
|
214
|
+
* "List all virtual machines in my subscription"
|
|
215
|
+
* "Show me all VMs in resource group 'my-resource-group'"
|
|
216
|
+
* "Get details for virtual machine 'my-vm' in resource group 'my-resource-group'"
|
|
217
|
+
* "Get virtual machine 'my-vm' with instance view including power state and runtime status"
|
|
218
|
+
* "Show me the power state and provisioning status of VM 'my-vm'"
|
|
219
|
+
* "What is the current status of my virtual machine 'my-vm'?"
|
|
220
|
+
* "Create a new VM named 'my-vm' in resource group 'my-rg' for web workloads"
|
|
221
|
+
* "Create a Linux VM with Ubuntu 22.04 and SSH key authentication"
|
|
222
|
+
* "Create a development VM with Standard_B2s size in East US"
|
|
223
|
+
* "Update VM 'my-vm' tags to environment=production"
|
|
224
|
+
* "Create a VMSS named 'my-vmss' with 3 instances for web workloads"
|
|
225
|
+
* "Update VMSS 'my-vmss' capacity to 5 instances"
|
|
226
|
+
* "Delete virtual machine 'my-vm' in resource group 'my-resource-group'"
|
|
227
|
+
* "Force delete VM 'my-vm' in resource group 'my-rg' using force-deletion"
|
|
228
|
+
* "Delete virtual machine scale set 'my-vmss' in resource group 'my-resource-group'"
|
|
229
|
+
* "Force delete VMSS 'my-vmss' in resource group 'my-rg' using force-deletion"
|
|
230
|
+
|
|
231
|
+
### ๏ฟฝ๐ฆ Azure Container Apps
|
|
161
232
|
|
|
162
233
|
* "List the container apps in my subscription"
|
|
163
234
|
* "Show me the container apps in my 'my-resource-group' resource group"
|
|
@@ -195,6 +266,26 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
195
266
|
* "Publish an event with data '{\"name\": \"test\"}' to topic 'my-topic' using CloudEvents schema"
|
|
196
267
|
* "Send custom event data to Event Grid topic 'analytics-events' with EventGrid schema"
|
|
197
268
|
|
|
269
|
+
### ๐ Azure File Shares
|
|
270
|
+
|
|
271
|
+
* "Get details about a specific file share in my resource group"
|
|
272
|
+
* "Create a new Azure managed file share with NFS protocol"
|
|
273
|
+
* "Create a file share with 64 GiB storage, 3000 IOPS, and 125 MiB/s throughput"
|
|
274
|
+
* "Update the provisioned storage size of my file share"
|
|
275
|
+
* "Update network access settings for my file share"
|
|
276
|
+
* "Delete a file share from my resource group"
|
|
277
|
+
* "Check if a file share name is available"
|
|
278
|
+
* "Get details about a file share snapshot"
|
|
279
|
+
* "Create a snapshot of my file share"
|
|
280
|
+
* "Update tags on a file share snapshot"
|
|
281
|
+
* "Delete a file share snapshot"
|
|
282
|
+
* "Get a private endpoint connection for my file share"
|
|
283
|
+
* "Update private endpoint connection status to Approved"
|
|
284
|
+
* "Delete a private endpoint connection"
|
|
285
|
+
* "Get file share limits and quotas for a region"
|
|
286
|
+
* "Get provisioning recommendations for my file share workload"
|
|
287
|
+
* "Get usage data and metrics for my file share"
|
|
288
|
+
|
|
198
289
|
### ๐ Azure Key Vault
|
|
199
290
|
|
|
200
291
|
* "List all secrets in my key vault 'my-vault'"
|
|
@@ -223,6 +314,14 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
223
314
|
|
|
224
315
|
* "Query my Log Analytics workspace"
|
|
225
316
|
|
|
317
|
+
### ๐งญ Azure Monitor Instrumentation (under Azure Monitor)
|
|
318
|
+
|
|
319
|
+
* "List available Azure Monitor onboarding learning resources"
|
|
320
|
+
* "Get the learning resource at 'concepts/dotnet/opentelemetry-pipeline.md'"
|
|
321
|
+
* "Start Azure Monitor instrumentation orchestration for my local workspace"
|
|
322
|
+
* "Continue to the next orchestration step after I complete the previous action"
|
|
323
|
+
* "Send brownfield analysis findings to continue migration planning"
|
|
324
|
+
|
|
226
325
|
### ๐ง Azure Resource Management
|
|
227
326
|
|
|
228
327
|
* "List my resource groups"
|
|
@@ -254,12 +353,25 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
254
353
|
* "Get details about my Storage container"
|
|
255
354
|
* "Upload my file to the blob container"
|
|
256
355
|
|
|
356
|
+
### ๐ Azure Migrate
|
|
357
|
+
|
|
358
|
+
* "Generate a Platform Landing Zone"
|
|
359
|
+
* "Turn off DDoS protection in my Platform Landing Zone"
|
|
360
|
+
* "Turn off Bastion host in my Platform Landing Zone"
|
|
361
|
+
|
|
362
|
+
### ๐๏ธ Azure Well-Architected Framework
|
|
363
|
+
|
|
364
|
+
* "List all services with Well-Architected Framework guidance"
|
|
365
|
+
* "What services have architectural guidance?"
|
|
366
|
+
* "Get Well-Architected Framework guidance for App Service"
|
|
367
|
+
* "What's the architectural guidance for Azure Cosmos DB?"
|
|
257
368
|
|
|
258
369
|
## Complete List of Supported Azure Services
|
|
259
370
|
|
|
260
|
-
The Azure MCP Server provides tools for interacting with **
|
|
371
|
+
The Azure MCP Server provides tools for interacting with **43+ Azure service areas**:
|
|
261
372
|
|
|
262
373
|
- ๐งฎ **Microsoft Foundry** - AI model management, AI model deployment, and knowledge index management
|
|
374
|
+
- ๐ **Azure Advisor** - Advisor recommendations
|
|
263
375
|
- ๐ **Azure AI Search** - Search engine/vector database operations
|
|
264
376
|
- ๐ค **Azure AI Services Speech** - Speech-to-text recognition and text-to-speech synthesis
|
|
265
377
|
- โ๏ธ **Azure App Configuration** - Configuration management
|
|
@@ -267,22 +379,27 @@ The Azure MCP Server provides tools for interacting with **41+ Azure service are
|
|
|
267
379
|
- ๐ก๏ธ **Azure Best Practices** - Secure, production-grade guidance
|
|
268
380
|
- ๐ฅ๏ธ **Azure CLI Generate** - Generate Azure CLI commands from natural language
|
|
269
381
|
- ๐ **Azure Communication Services** - SMS messaging and communication
|
|
270
|
-
-
|
|
382
|
+
- ๏ฟฝ **Azure Compute** - Virtual Machine, Virtual Machine Scale Set, and Disk management
|
|
383
|
+
- ๏ฟฝ๐ **Azure Confidential Ledger** - Tamper-proof ledger operations
|
|
271
384
|
- ๐ฆ **Azure Container Apps** - Container hosting
|
|
272
385
|
- ๐ฆ **Azure Container Registry (ACR)** - Container registry management
|
|
273
386
|
- ๐ **Azure Cosmos DB** - NoSQL database operations
|
|
274
387
|
- ๐งฎ **Azure Data Explorer** - Analytics queries and KQL
|
|
275
388
|
- ๐ฌ **Azure Database for MySQL** - MySQL database management
|
|
276
389
|
- ๐ **Azure Database for PostgreSQL** - PostgreSQL database management
|
|
390
|
+
- ๐ญ **Azure Device Registry** - Device Registry namespace management
|
|
277
391
|
- ๐ **Azure Event Grid** - Event routing and management
|
|
278
|
-
-
|
|
392
|
+
- ๐ **Azure File Shares** - Azure managed file share operations
|
|
393
|
+
- โก **Azure Functions** - Function App management and functions project files, language support, and templates source code
|
|
279
394
|
- ๐ **Azure Key Vault** - Secrets, keys, and certificates
|
|
280
395
|
- โธ๏ธ **Azure Kubernetes Service (AKS)** - Container orchestration
|
|
281
396
|
- ๐ฆ **Azure Load Testing** - Performance testing
|
|
282
397
|
- ๐ **Azure Managed Grafana** - Monitoring dashboards
|
|
283
398
|
- ๐๏ธ **Azure Managed Lustre** - High-performance Lustre filesystem operations
|
|
284
399
|
- ๐ช **Azure Marketplace** - Product discovery
|
|
285
|
-
-
|
|
400
|
+
- ๐ **Azure Migrate** - Platform Landing Zone generation and modification guidance
|
|
401
|
+
- ๐ **Azure Monitor** - Logging, metrics, health monitoring, and instrumentation onboarding/migration workflow for local applications
|
|
402
|
+
- โ๏ธ **Azure Policy** - Policies set to enforce organizational standards
|
|
286
403
|
- โ๏ธ **Azure Native ISV Services** - Third-party integrations
|
|
287
404
|
- ๐ก๏ธ **Azure Quick Review CLI** - Compliance scanning
|
|
288
405
|
- ๐ **Azure Quota** - Resource quota and usage management
|
|
@@ -290,15 +407,17 @@ The Azure MCP Server provides tools for interacting with **41+ Azure service are
|
|
|
290
407
|
- ๐ด **Azure Redis Cache** - In-memory data store
|
|
291
408
|
- ๐๏ธ **Azure Resource Groups** - Resource organization
|
|
292
409
|
- ๐ **Azure Service Bus** - Message queuing
|
|
410
|
+
- ๐งต **Azure Service Fabric** - Managed cluster node operations
|
|
293
411
|
- ๐ฅ **Azure Service Health** - Resource health status and availability
|
|
294
412
|
- ๐๏ธ **Azure SQL Database** - Relational database management
|
|
295
413
|
- ๐๏ธ **Azure SQL Elastic Pool** - Database resource sharing
|
|
296
414
|
- ๐๏ธ **Azure SQL Server** - Server administration
|
|
297
415
|
- ๐พ **Azure Storage** - Blob storage
|
|
298
|
-
-
|
|
416
|
+
- **Azure Storage Sync** - Azure File Sync management operations
|
|
299
417
|
- ๐ **Azure Subscription** - Subscription management
|
|
300
418
|
- ๐๏ธ **Azure Terraform Best Practices** - Infrastructure as code guidance
|
|
301
419
|
- ๐ฅ๏ธ **Azure Virtual Desktop** - Virtual desktop infrastructure
|
|
420
|
+
- ๐๏ธ **Azure Well-Architected Framework** - Architectural best practices and design patterns
|
|
302
421
|
- ๐ **Azure Workbooks** - Custom visualizations
|
|
303
422
|
- ๐๏ธ **Bicep** - Azure resource templates
|
|
304
423
|
- ๐๏ธ **Cloud Architect** - Guided architecture design
|
|
@@ -309,10 +428,12 @@ The Azure MCP Server provides tools for interacting with **41+ Azure service are
|
|
|
309
428
|
|
|
310
429
|
- See our [official documentation on learn.microsoft.com](https://learn.microsoft.com/azure/developer/azure-mcp-server/) to learn how to use the Azure MCP Server to interact with Azure resources through natural language commands from AI agents and other types of clients.
|
|
311
430
|
- For additional command documentation and examples, see [Azure MCP Commands](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/docs/azmcp-commands.md).
|
|
431
|
+
- Use [Prompt Templates](https://github.com/microsoft/mcp/blob/main/docs/prompt-templates.md) to set tenant and subscription context once at the beginning of your Copilot session, avoiding repetitive information in subsequent prompts.
|
|
312
432
|
|
|
313
433
|
## Feedback and Support
|
|
314
434
|
|
|
315
435
|
- Check the [Troubleshooting guide](https://aka.ms/azmcp/troubleshooting) to diagnose and resolve common issues with the Azure MCP Server.
|
|
436
|
+
- Review the [Known Issues](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/KNOWN-ISSUES.md) for current limitations and workarounds.
|
|
316
437
|
- For advanced troubleshooting, you can enable [support logging](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/TROUBLESHOOTING.md#support-logging) using the `--dangerously-write-support-logs-to-dir` option.
|
|
317
438
|
- We're building this in the open. Your feedback is much appreciated, and will help us shape the future of the Azure MCP server.
|
|
318
439
|
- ๐ [Open an issue](https://github.com/microsoft/mcp/issues) in the public GitHub repository โ weโd love to hear from you!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
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-
|
|
37
|
-
"@azure/mcp-darwin-arm64": "2.0.0
|
|
38
|
-
"@azure/mcp-
|
|
39
|
-
"@azure/mcp-win32-x64": "2.0.0
|
|
40
|
-
"@azure/mcp-
|
|
41
|
-
"@azure/mcp-linux-
|
|
36
|
+
"@azure/mcp-linux-arm64": "2.0.0",
|
|
37
|
+
"@azure/mcp-darwin-arm64": "2.0.0",
|
|
38
|
+
"@azure/mcp-darwin-x64": "2.0.0",
|
|
39
|
+
"@azure/mcp-win32-x64": "2.0.0",
|
|
40
|
+
"@azure/mcp-win32-arm64": "2.0.0",
|
|
41
|
+
"@azure/mcp-linux-x64": "2.0.0"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|