@azure/mcp 0.0.12 → 0.0.14

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 +18 -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"
@@ -61,6 +63,19 @@ The Azure MCP Server provides tools for interacting with the following Azure ser
61
63
  - Manage containers and items
62
64
  - Execute SQL queries against containers
63
65
 
66
+ ### 🐘 Azure Database for PostgreSQL - Flexible Server
67
+ - List and query databases.
68
+ - List and get schema for tables.
69
+ - List, get configuration and get parameters for servers.
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
+
64
79
  ### 💾 Azure Storage
65
80
  - List Storage accounts
66
81
  - Manage blob containers and blobs
@@ -79,6 +94,9 @@ The Azure MCP Server provides tools for interacting with the following Azure ser
79
94
  - Handle labeled configurations
80
95
  - Lock/unlock configuration settings
81
96
 
97
+ ### 🔑 Azure Key Vault
98
+ - List, create, and get keys
99
+
82
100
  ### 📦 Azure Resource Groups
83
101
  - List resource groups
84
102
  - Resource group management operations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "0.0.12",
3
+ "version": "0.0.14",
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.12",
37
- "@azure/mcp-linux-arm64": "0.0.12",
38
- "@azure/mcp-darwin-arm64": "0.0.12",
39
- "@azure/mcp-win32-x64": "0.0.12",
40
- "@azure/mcp-linux-x64": "0.0.12",
41
- "@azure/mcp-win32-arm64": "0.0.12"
36
+ "@azure/mcp-darwin-x64": "0.0.14",
37
+ "@azure/mcp-linux-arm64": "0.0.14",
38
+ "@azure/mcp-darwin-arm64": "0.0.14",
39
+ "@azure/mcp-win32-x64": "0.0.14",
40
+ "@azure/mcp-linux-x64": "0.0.14",
41
+ "@azure/mcp-win32-arm64": "0.0.14"
42
42
  }
43
43
  }