@azure/mcp 0.7.0 → 0.8.0

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 CHANGED
@@ -2,13 +2,6 @@
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/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/CHANGELOG.md#040-2025-07-15).**
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
-
12
5
  ## Table of Contents
13
6
  - Install
14
7
  - [VS Code Install Guide (Recommended)](#vs-code-install-guide-recommended)
@@ -98,7 +91,11 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
98
91
 
99
92
  * "List all Event Grid topics in subscription 'my-subscription'"
100
93
  * "Show me the Event Grid topics in my subscription"
101
- * "List all Event Grid topics in resource group 'my-resource-group' in my subscription"
94
+ * "List all Event Grid topics in resource group 'my-resourcegroup' in my subscription"
95
+ * "List Event Grid subscriptions for topic 'my-topic' in resource group 'my-resourcegroup'"
96
+ * "List Event Grid subscriptions for topic 'my-topic' in subscription 'my-subscription'"
97
+ * "List Event Grid Subscriptions in subscription 'my-subscription'"
98
+ * "List Event Grid subscriptions for topic 'my-topic' in location 'my-location'"
102
99
 
103
100
  ### ⚡ Azure Managed Lustre
104
101
 
@@ -119,6 +116,7 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
119
116
 
120
117
  * "Show me details about my Azure SQL database 'mydb'"
121
118
  * "List all databases in my Azure SQL server 'myserver'"
119
+ * "Update the performance tier of my Azure SQL database 'mydb'"
122
120
  * "List all firewall rules for my Azure SQL server 'myserver'"
123
121
  * "Create a firewall rule for my Azure SQL server 'myserver'"
124
122
  * "Delete a firewall rule from my Azure SQL server 'myserver'"
@@ -211,6 +209,8 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
211
209
  * List Event Grid topics in subscription or resource group
212
210
  * View topic configuration and status information
213
211
  * Access endpoint and key details for event publishing
212
+ * List Event Grid subscriptions with filtering by topic name, resource group, and location
213
+ * View subscription details including destination endpoints and retry policies
214
214
 
215
215
  ### 🧮 Azure Foundry
216
216
 
@@ -316,6 +316,9 @@ The Azure MCP Server supercharges your agents with Azure context. Here are some
316
316
 
317
317
  * Show database details and properties
318
318
  * List the details and properties of all databases
319
+ * Create a SQL database
320
+ * Update a SQL database configuration
321
+ * Delete a SQL database
319
322
  * List SQL server firewall rules
320
323
  * Create SQL server firewall rules
321
324
  * Delete SQL server firewall rules
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
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",
@@ -14,8 +14,8 @@
14
14
  "url": "https://github.com/microsoft/mcp/issues"
15
15
  },
16
16
  "repository": {
17
- "url": "https://github.com/microsoft/mcp.git",
18
- "type": "git"
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.7.0",
37
- "@azure/mcp-linux-x64": "0.7.0",
38
- "@azure/mcp-darwin-arm64": "0.7.0",
39
- "@azure/mcp-darwin-x64": "0.7.0",
40
- "@azure/mcp-win32-arm64": "0.7.0",
41
- "@azure/mcp-win32-x64": "0.7.0"
36
+ "@azure/mcp-linux-arm64": "0.8.0",
37
+ "@azure/mcp-linux-x64": "0.8.0",
38
+ "@azure/mcp-darwin-arm64": "0.8.0",
39
+ "@azure/mcp-darwin-x64": "0.8.0",
40
+ "@azure/mcp-win32-arm64": "0.8.0",
41
+ "@azure/mcp-win32-x64": "0.8.0"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node ./scripts/post-install-script.js"
@@ -8,6 +8,6 @@ const requiredPackage = `@azure/mcp-${platform}-${arch}`;
8
8
  try {
9
9
  require.resolve(requiredPackage);
10
10
  } catch (err) {
11
- console.error(`Missing required package: '${requiredPackage}'`);
11
+ console.error(`Missing required package: '${requiredPackage}'. Follow the troubleshooting steps - https://aka.ms/azmcp/troubleshooting#platform-package-installation-issues`);
12
12
  process.exit(1);
13
13
  }