@azure/mcp 0.5.6 → 0.5.7

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 +27 -4
  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
 
@@ -81,6 +89,7 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
81
89
  * "Create a new storage account in East US with Data Lake support"
82
90
  * "Show me the tables in my Storage account"
83
91
  * "Get details about my Storage container"
92
+ * "Upload my file to the blob container"
84
93
  * "List paths in my Data Lake file system"
85
94
  * "List files and directories in my File Share"
86
95
  * "Send a message to my storage queue"
@@ -114,8 +123,8 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
114
123
 
115
124
  ### 📦 Azure Container Registry (ACR)
116
125
 
117
- * List Azure Container Registries in a subscription
118
- * Filter container registries by resource group
126
+ * List Azure Container Registries and repositories in a subscription
127
+ * Filter container registries and repositories by resource group
119
128
  * JSON output formatting
120
129
  * Cross-platform compatibility
121
130
 
@@ -147,12 +156,20 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
147
156
  * Support for template discovery, template initialization, provisioning and deployment
148
157
  * Cross-platform compatibility
149
158
 
159
+ ### 🚀 Azure Deploy
160
+
161
+ * Generate Azure service architecture diagrams from source code
162
+ * Create a deploy plan for provisioning and deploying the application
163
+ * Get the application service log for a specific azd environment
164
+ * Get the bicep or terraform file generation rules for an application
165
+ * Get the GitHub pipeline creation guideline for an application
166
+
150
167
  ### 🧮 Azure Foundry
151
168
 
152
169
  * List Azure Foundry models
153
170
  * Deploy foundry models
154
171
  * List foundry model deployments
155
-
172
+
156
173
  ### ☁️ Azure Function App
157
174
 
158
175
  * List Azure Function Apps
@@ -163,7 +180,7 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
163
180
 
164
181
  ### 🔑 Azure Key Vault
165
182
 
166
- * List and create certificates
183
+ * List, create, and import certificates
167
184
  * List and create keys
168
185
  * List and create secrets
169
186
 
@@ -206,6 +223,11 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
206
223
 
207
224
  * Scan Azure resources for compliance related recommendations
208
225
 
226
+ ### 📊 Azure Quota
227
+
228
+ * List available regions
229
+ * Check quota usage
230
+
209
231
  ### 🔴 Azure Redis Cache
210
232
 
211
233
  * List Redis Cluster resources
@@ -244,6 +266,7 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
244
266
  * List and create Storage accounts
245
267
  * Get detailed information about specific Storage accounts
246
268
  * Manage blob containers and blobs
269
+ * Upload files to blob containers
247
270
  * List and query Storage tables
248
271
  * List paths in Data Lake file systems
249
272
  * Get container properties and metadata
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "0.5.6",
3
+ "version": "0.5.7",
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.7",
37
+ "@azure/mcp-darwin-x64": "0.5.7",
38
+ "@azure/mcp-linux-arm64": "0.5.7",
39
+ "@azure/mcp-darwin-arm64": "0.5.7",
40
+ "@azure/mcp-win32-x64": "0.5.7",
41
+ "@azure/mcp-win32-arm64": "0.5.7"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node ./scripts/post-install-script.js"