@azure/mcp 0.5.10 → 0.5.12
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 +4 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -84,6 +84,8 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
|
|
|
84
84
|
* "Show me details about my Azure SQL database 'mydb'"
|
|
85
85
|
* "List all databases in my Azure SQL server 'myserver'"
|
|
86
86
|
* "List all firewall rules for my Azure SQL server 'myserver'"
|
|
87
|
+
* "Create a firewall rule for my Azure SQL server 'myserver'"
|
|
88
|
+
* "Delete a firewall rule from my Azure SQL server 'myserver'"
|
|
87
89
|
* "List all elastic pools in my Azure SQL server 'myserver'"
|
|
88
90
|
* "List Active Directory administrators for my Azure SQL server 'myserver'"
|
|
89
91
|
|
|
@@ -276,6 +278,8 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
|
|
|
276
278
|
* Show database details and properties
|
|
277
279
|
* List the details and properties of all databases
|
|
278
280
|
* List SQL server firewall rules
|
|
281
|
+
* Create SQL server firewall rules
|
|
282
|
+
* Delete SQL server firewall rules
|
|
279
283
|
|
|
280
284
|
### 🗄️ Azure SQL Elastic Pool
|
|
281
285
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.12",
|
|
4
4
|
"description": "Azure MCP Server - Model Context Protocol implementation for Azure",
|
|
5
5
|
"author": "Microsoft Corporation",
|
|
6
6
|
"homepage": "https://github.com/Microsoft/mcp/blob/main/servers/Azure.Mcp.Server#readme",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"url": "https://github.com/microsoft/mcp/issues"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/microsoft/mcp.git"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=20.0.0"
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"x64"
|
|
34
34
|
],
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@azure/mcp-linux-arm64": "0.5.
|
|
37
|
-
"@azure/mcp-linux-x64": "0.5.
|
|
38
|
-
"@azure/mcp-darwin-arm64": "0.5.
|
|
39
|
-
"@azure/mcp-darwin-x64": "0.5.
|
|
40
|
-
"@azure/mcp-win32-arm64": "0.5.
|
|
41
|
-
"@azure/mcp-win32-x64": "0.5.
|
|
36
|
+
"@azure/mcp-linux-arm64": "0.5.12",
|
|
37
|
+
"@azure/mcp-linux-x64": "0.5.12",
|
|
38
|
+
"@azure/mcp-darwin-arm64": "0.5.12",
|
|
39
|
+
"@azure/mcp-darwin-x64": "0.5.12",
|
|
40
|
+
"@azure/mcp-win32-arm64": "0.5.12",
|
|
41
|
+
"@azure/mcp-win32-x64": "0.5.12"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|