@azure/mcp 0.5.6 → 0.5.8

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 +66 -15
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  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. This project is in Public Preview and implementation may significantly change prior to our General Availability.
4
4
 
5
+
6
+ >[!WARNING]
7
+ >**Deprecation Notice: SSE transport mode has been removed in version [0.4.0 (2025-07-15)](https://github.com/Azure/azure-mcp/blob/main/CHANGELOG.md#breaking-changes-7).**
8
+ >
9
+ > SSE was deprecated in MCP `2025-03-26` due to [security vulnerabilities and architectural limitations](https://blog.fka.dev/blog/2025-06-06-why-mcp-deprecated-sse-and-go-with-streamable-http/). Users must discontinue use of SSE transport mode and upgrade to version `0.4.0` or newer to maintain compatibility with current MCP clients.
10
+
11
+
5
12
  ### ✅ VS Code Install Guide (Recommended)
6
13
 
7
14
  1. Install either the stable or Insiders release of VS Code:
@@ -40,6 +47,7 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
40
47
 
41
48
  * "List all my Azure Container Registries"
42
49
  * "Show me my container registries in the 'myproject' resource group"
50
+ * "List all my Azure Container Registry repositories"
43
51
 
44
52
  ### ☸️ Azure Kubernetes Service (AKS)
45
53
 
@@ -56,10 +64,21 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
56
64
  * "Get Azure Data Explorer databases in cluster 'mycluster'"
57
65
  * "Sample 10 rows from table 'StormEvents' in Azure Data Explorer database 'db1'"
58
66
 
67
+ ### ⚡ Azure Managed Lustre
68
+
69
+ * "List the Azure Managed Lustre clusters in resource group 'my-resourcegroup'"
70
+ * "How many IP Addresses I need to create a 128 TiB cluster of AMLFS 500?"
71
+
59
72
  ### 📊 Azure Monitor
60
73
 
61
74
  * "Query my Log Analytics workspace"
62
75
 
76
+ ### 🔧 Azure Resource Management
77
+
78
+ * "List my resource groups"
79
+ * "List my Azure CDN endpoints"
80
+ * "Help me build an Azure application using Node.js"
81
+
63
82
  ### 🗄️ Azure SQL Database
64
83
 
65
84
  * "Show me details about my Azure SQL database 'mydb'"
@@ -68,12 +87,6 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
68
87
  * "List all elastic pools in my Azure SQL server 'myserver'"
69
88
  * "List Active Directory administrators for my Azure SQL server 'myserver'"
70
89
 
71
- ### 🔧 Azure Resource Management
72
-
73
- * "List my resource groups"
74
- * "List my Azure CDN endpoints"
75
- * "Help me build an Azure application using Node.js"
76
-
77
90
  ### 💾 Azure Storage
78
91
 
79
92
  * "List my Azure storage accounts"
@@ -81,6 +94,7 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
81
94
  * "Create a new storage account in East US with Data Lake support"
82
95
  * "Show me the tables in my Storage account"
83
96
  * "Get details about my Storage container"
97
+ * "Upload my file to the blob container"
84
98
  * "List paths in my Data Lake file system"
85
99
  * "List files and directories in my File Share"
86
100
  * "Send a message to my storage queue"
@@ -114,8 +128,8 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
114
128
 
115
129
  ### 📦 Azure Container Registry (ACR)
116
130
 
117
- * List Azure Container Registries in a subscription
118
- * Filter container registries by resource group
131
+ * List Azure Container Registries and repositories in a subscription
132
+ * Filter container registries and repositories by resource group
119
133
  * JSON output formatting
120
134
  * Cross-platform compatibility
121
135
 
@@ -135,35 +149,47 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
135
149
  * Sample rows from a table
136
150
  * Query using KQL
137
151
 
138
- ### 🐘 Azure Database for PostgreSQL - Flexible Server
152
+ ### 🐬 Azure Database for MySQL - Flexible Server
139
153
 
140
154
  * List and query databases.
141
155
  * List and get schema for tables.
142
156
  * List, get configuration and get parameters for servers.
143
157
 
158
+ ### 🐘 Azure Database for PostgreSQL - Flexible Server
159
+
160
+ * List and query databases.
161
+ * List and get schema for tables.
162
+ * List, get configuration and get/set parameters for servers.
163
+
144
164
  ### 🛠️ Azure Developer CLI (azd) Extension
145
165
 
146
166
  * Execute Azure Developer CLI commands directly
147
167
  * Support for template discovery, template initialization, provisioning and deployment
148
168
  * Cross-platform compatibility
149
169
 
170
+ ### 🚀 Azure Deploy
171
+
172
+ * Generate Azure service architecture diagrams from source code
173
+ * Create a deploy plan for provisioning and deploying the application
174
+ * Get the application service log for a specific azd environment
175
+ * Get the bicep or terraform file generation rules for an application
176
+ * Get the GitHub pipeline creation guideline for an application
177
+
150
178
  ### 🧮 Azure Foundry
151
179
 
152
180
  * List Azure Foundry models
153
181
  * Deploy foundry models
154
182
  * List foundry model deployments
155
-
183
+ * List knowledge indexes
184
+
156
185
  ### ☁️ Azure Function App
157
186
 
158
187
  * List Azure Function Apps
159
-
160
- ### 🚀 Azure Managed Grafana
161
-
162
- * List Azure Managed Grafana
188
+ * Get details for a specific Function App
163
189
 
164
190
  ### 🔑 Azure Key Vault
165
191
 
166
- * List and create certificates
192
+ * List, create, and import certificates
167
193
  * List and create keys
168
194
  * List and create secrets
169
195
 
@@ -177,6 +203,16 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
177
203
  * List, create load tests
178
204
  * Get, list, (create) run and rerun, update load test runs
179
205
 
206
+
207
+ ### 🚀 Azure Managed Grafana
208
+
209
+ * List Azure Managed Grafana
210
+
211
+ ### ⚡ Azure Managed Lustre
212
+
213
+ * List Azure Managed Lustre filesystems
214
+ * Get the number of IP addresses required for a specific SKU and size of Azure Managed Lustre filesystem
215
+
180
216
  ### 🏪 Azure Marketplace
181
217
 
182
218
  * Get details about Marketplace products
@@ -198,6 +234,11 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
198
234
  * Query Azure Monitor metrics for resources with time series data
199
235
  * List available metric definitions for resources
200
236
 
237
+ ### 🏥 Azure Service Health
238
+
239
+ * Get the availability status for a specific resource
240
+ * List availability statuses for all resources in a subscription or resource group
241
+
201
242
  ### ⚙️ Azure Native ISV Services
202
243
 
203
244
  * List Monitored Resources in a Datadog Monitor
@@ -206,6 +247,11 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
206
247
 
207
248
  * Scan Azure resources for compliance related recommendations
208
249
 
250
+ ### 📊 Azure Quota
251
+
252
+ * List available regions
253
+ * Check quota usage
254
+
209
255
  ### 🔴 Azure Redis Cache
210
256
 
211
257
  * List Redis Cluster resources
@@ -244,6 +290,7 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
244
290
  * List and create Storage accounts
245
291
  * Get detailed information about specific Storage accounts
246
292
  * Manage blob containers and blobs
293
+ * Upload files to blob containers
247
294
  * List and query Storage tables
248
295
  * List paths in Data Lake file systems
249
296
  * Get container properties and metadata
@@ -275,6 +322,10 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
275
322
 
276
323
  * Get the Bicep schema for specific Azure resource types
277
324
 
325
+ ### 🏗️ Cloud Architect
326
+
327
+ * Design Azure cloud architectures through guided questions
328
+
278
329
  Agents and models can discover and learn best practices and usage guidelines for the `azd` MCP tool. For more information, see [AZD Best Practices](https://github.com/Azure/azure-mcp/tree/main/areas/extension/src/AzureMcp.Extension/Resources/azd-best-practices.txt).
279
330
 
280
331
  </details>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "0.5.6",
3
+ "version": "0.5.8",
4
4
  "description": "Azure MCP Server - Model Context Protocol implementation for Azure",
5
5
  "author": "Microsoft Corporation",
6
6
  "homepage": "https://github.com/Azure/azure-mcp#readme",
@@ -33,12 +33,12 @@
33
33
  "arm64"
34
34
  ],
35
35
  "optionalDependencies": {
36
- "@azure/mcp-linux-x64": "0.5.6",
37
- "@azure/mcp-darwin-x64": "0.5.6",
38
- "@azure/mcp-linux-arm64": "0.5.6",
39
- "@azure/mcp-darwin-arm64": "0.5.6",
40
- "@azure/mcp-win32-x64": "0.5.6",
41
- "@azure/mcp-win32-arm64": "0.5.6"
36
+ "@azure/mcp-linux-x64": "0.5.8",
37
+ "@azure/mcp-darwin-x64": "0.5.8",
38
+ "@azure/mcp-linux-arm64": "0.5.8",
39
+ "@azure/mcp-darwin-arm64": "0.5.8",
40
+ "@azure/mcp-win32-x64": "0.5.8",
41
+ "@azure/mcp-win32-arm64": "0.5.8"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node ./scripts/post-install-script.js"