@azure/mcp 0.0.13 → 0.0.15

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 +17 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -22,6 +22,8 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
22
22
  - "Show me the tables in my Storage account"
23
23
  - "List containers in my Cosmos DB database"
24
24
  - "Get details about my Storage container"
25
+ - "Get Kusto databases in cluster 'mycluster'"
26
+ - "Sample 10 rows from table 'StormEvents' in Kusto database 'db1'"
25
27
 
26
28
  ### 📊 Query & Analyze
27
29
  - "Query my Log Analytics workspace"
@@ -66,6 +68,14 @@ The Azure MCP Server provides tools for interacting with the following Azure ser
66
68
  - List and get schema for tables.
67
69
  - List, get configuration and get parameters for servers.
68
70
 
71
+ ### 🧮 Kusto (Azure Data Explorer)
72
+ - List Kusto clusters
73
+ - List databases in a Kusto cluster
74
+ - List tables in a Kusto database
75
+ - Get schema for a Kusto table
76
+ - Sample rows from a Kusto table
77
+ - Query Kusto databases using KQL
78
+
69
79
  ### 💾 Azure Storage
70
80
  - List Storage accounts
71
81
  - Manage blob containers and blobs
@@ -84,10 +94,17 @@ The Azure MCP Server provides tools for interacting with the following Azure ser
84
94
  - Handle labeled configurations
85
95
  - Lock/unlock configuration settings
86
96
 
97
+ ### 🔑 Azure Key Vault
98
+ - List, create, and get keys
99
+
87
100
  ### 📦 Azure Resource Groups
88
101
  - List resource groups
89
102
  - Resource group management operations
90
103
 
104
+ ### 🚌 Azure Service Bus
105
+ - Peek at messages from subscriptions and queues
106
+ - Examine properties and runtime information about queues, topics, and subscriptions
107
+
91
108
  ### 🔧 Azure CLI Extension
92
109
  - Execute Azure CLI commands directly
93
110
  - Support for all Azure CLI functionality
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "0.0.13",
3
+ "version": "0.0.15",
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,11 +33,11 @@
33
33
  "arm64"
34
34
  ],
35
35
  "optionalDependencies": {
36
- "@azure/mcp-darwin-x64": "0.0.13",
37
- "@azure/mcp-linux-arm64": "0.0.13",
38
- "@azure/mcp-darwin-arm64": "0.0.13",
39
- "@azure/mcp-win32-x64": "0.0.13",
40
- "@azure/mcp-linux-x64": "0.0.13",
41
- "@azure/mcp-win32-arm64": "0.0.13"
36
+ "@azure/mcp-darwin-x64": "0.0.15",
37
+ "@azure/mcp-linux-arm64": "0.0.15",
38
+ "@azure/mcp-darwin-arm64": "0.0.15",
39
+ "@azure/mcp-win32-x64": "0.0.15",
40
+ "@azure/mcp-linux-x64": "0.0.15",
41
+ "@azure/mcp-win32-arm64": "0.0.15"
42
42
  }
43
43
  }