@azure/mcp 2.0.0-beta.10 β 2.0.0-beta.11
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 +23 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -195,6 +195,26 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
195
195
|
* "Publish an event with data '{\"name\": \"test\"}' to topic 'my-topic' using CloudEvents schema"
|
|
196
196
|
* "Send custom event data to Event Grid topic 'analytics-events' with EventGrid schema"
|
|
197
197
|
|
|
198
|
+
### π Azure File Shares
|
|
199
|
+
|
|
200
|
+
* "Get details about a specific file share in my resource group"
|
|
201
|
+
* "Create a new Azure managed file share with NFS protocol"
|
|
202
|
+
* "Create a file share with 64 GiB storage, 3000 IOPS, and 125 MiB/s throughput"
|
|
203
|
+
* "Update the provisioned storage size of my file share"
|
|
204
|
+
* "Update network access settings for my file share"
|
|
205
|
+
* "Delete a file share from my resource group"
|
|
206
|
+
* "Check if a file share name is available"
|
|
207
|
+
* "Get details about a file share snapshot"
|
|
208
|
+
* "Create a snapshot of my file share"
|
|
209
|
+
* "Update tags on a file share snapshot"
|
|
210
|
+
* "Delete a file share snapshot"
|
|
211
|
+
* "Get a private endpoint connection for my file share"
|
|
212
|
+
* "Update private endpoint connection status to Approved"
|
|
213
|
+
* "Delete a private endpoint connection"
|
|
214
|
+
* "Get file share limits and quotas for a region"
|
|
215
|
+
* "Get provisioning recommendations for my file share workload"
|
|
216
|
+
* "Get usage data and metrics for my file share"
|
|
217
|
+
|
|
198
218
|
### π Azure Key Vault
|
|
199
219
|
|
|
200
220
|
* "List all secrets in my key vault 'my-vault'"
|
|
@@ -275,6 +295,7 @@ The Azure MCP Server provides tools for interacting with **41+ Azure service are
|
|
|
275
295
|
- π¬ **Azure Database for MySQL** - MySQL database management
|
|
276
296
|
- π **Azure Database for PostgreSQL** - PostgreSQL database management
|
|
277
297
|
- π **Azure Event Grid** - Event routing and management
|
|
298
|
+
- οΏ½ **Azure File Shares** - Azure managed file share operations
|
|
278
299
|
- β‘ **Azure Functions** - Function App management
|
|
279
300
|
- π **Azure Key Vault** - Secrets, keys, and certificates
|
|
280
301
|
- βΈοΈ **Azure Kubernetes Service (AKS)** - Container orchestration
|
|
@@ -283,6 +304,7 @@ The Azure MCP Server provides tools for interacting with **41+ Azure service are
|
|
|
283
304
|
- ποΈ **Azure Managed Lustre** - High-performance Lustre filesystem operations
|
|
284
305
|
- πͺ **Azure Marketplace** - Product discovery
|
|
285
306
|
- π **Azure Monitor** - Logging, metrics, and health monitoring
|
|
307
|
+
- βοΈ **Azure Policy** - Policies set to enforce organizational standards
|
|
286
308
|
- βοΈ **Azure Native ISV Services** - Third-party integrations
|
|
287
309
|
- π‘οΈ **Azure Quick Review CLI** - Compliance scanning
|
|
288
310
|
- π **Azure Quota** - Resource quota and usage management
|
|
@@ -295,7 +317,7 @@ The Azure MCP Server provides tools for interacting with **41+ Azure service are
|
|
|
295
317
|
- ποΈ **Azure SQL Elastic Pool** - Database resource sharing
|
|
296
318
|
- ποΈ **Azure SQL Server** - Server administration
|
|
297
319
|
- πΎ **Azure Storage** - Blob storage
|
|
298
|
-
-
|
|
320
|
+
- **Azure Storage Sync** - Azure File Sync management operations
|
|
299
321
|
- π **Azure Subscription** - Subscription management
|
|
300
322
|
- ποΈ **Azure Terraform Best Practices** - Infrastructure as code guidance
|
|
301
323
|
- π₯οΈ **Azure Virtual Desktop** - Virtual desktop infrastructure
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.11",
|
|
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-darwin-
|
|
37
|
-
"@azure/mcp-linux-x64": "2.0.0-beta.
|
|
38
|
-
"@azure/mcp-
|
|
39
|
-
"@azure/mcp-win32-x64": "2.0.0-beta.
|
|
40
|
-
"@azure/mcp-
|
|
41
|
-
"@azure/mcp-
|
|
36
|
+
"@azure/mcp-darwin-x64": "2.0.0-beta.11",
|
|
37
|
+
"@azure/mcp-linux-x64": "2.0.0-beta.11",
|
|
38
|
+
"@azure/mcp-linux-arm64": "2.0.0-beta.11",
|
|
39
|
+
"@azure/mcp-win32-x64": "2.0.0-beta.11",
|
|
40
|
+
"@azure/mcp-darwin-arm64": "2.0.0-beta.11",
|
|
41
|
+
"@azure/mcp-win32-arm64": "2.0.0-beta.11"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|