@azure/mcp 2.0.0-beta.12 → 2.0.0-beta.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 +17 -5
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -50,15 +50,16 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
50
50
  **Client-Specific Configuration**
51
51
  | IDE | File Location | Documentation Link |
52
52
  |-----|---------------|-------------------|
53
- | **Amazon Q Developer** | `~/.aws/amazonq/mcp.json` (global)<br>`.amazonq/mcp.json` (workspace) | [AWS Q Developer MCP Guide](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/qdev-mcp.html) |
53
+ | **VS Code** | `.vscode/mcp.json` (workspace)<br>`settings.json` (user) | [VS Code MCP Documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) |
54
+ | **Visual Studio** | `.mcp.json` (solution/workspace) | [Visual Studio MCP Setup](https://learn.microsoft.com/visualstudio/ide/mcp-servers?view=vs-2022) |
55
+ | **GitHub Copilot CLI** | `~/.copilot/mcp-config.json` | [Copilot CLI MCP Configuration](#github-copilot-cli-configuration) |
54
56
  | **Claude Code** | `~/.claude.json` or `.mcp.json` (project) | [Claude Code MCP Configuration](https://scottspence.com/posts/configuring-mcp-tools-in-claude-code) |
55
- | **Claude Desktop** | `~/.claude/claude_desktop_config.json` (macOS)<br>`%APPDATA%\Claude\claude_desktop_config.json` (Windows) | [Claude Desktop MCP Setup](https://support.claude.com/en/articles/10949351-getting-started-with-local-mcp-servers-on-claude-desktop) |
56
- | **Cursor** | `~/.cursor/mcp.json` or `.cursor/mcp.json` | [Cursor MCP Documentation](https://docs.cursor.com/context/model-context-protocol) |
57
57
  | **Eclipse IDE** | GitHub Copilot Chat -> Configure Tools -> MCP Servers | [Eclipse MCP Documentation](https://docs.github.com/en/copilot/how-tos/provide-context/use-mcp/extend-copilot-chat-with-mcp#configuring-mcp-servers-in-eclipse) |
58
58
  | **IntelliJ IDEA** | Built-in MCP server (2025.2+)<br>Settings > Tools > MCP Server | [IntelliJ MCP Documentation](https://www.jetbrains.com/help/ai-assistant/mcp.html) |
59
- | **Visual Studio** | `.mcp.json` (solution/workspace) | [Visual Studio MCP Setup](https://learn.microsoft.com/visualstudio/ide/mcp-servers?view=vs-2022) |
60
- | **VS Code** | `.vscode/mcp.json` (workspace)<br>`settings.json` (user) | [VS Code MCP Documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) |
59
+ | **Cursor** | `~/.cursor/mcp.json` or `.cursor/mcp.json` | [Cursor MCP Documentation](https://docs.cursor.com/context/model-context-protocol) |
61
60
  | **Windsurf** | `~/.codeium/windsurf/mcp_config.json` | [Windsurf Cascade MCP Integration](https://docs.windsurf.com/windsurf/cascade/mcp) |
61
+ | **Amazon Q Developer** | `~/.aws/amazonq/mcp.json` (global)<br>`.amazonq/mcp.json` (workspace) | [AWS Q Developer MCP Guide](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/qdev-mcp.html) |
62
+ | **Claude Desktop** | `~/.claude/claude_desktop_config.json` (macOS)<br>`%APPDATA%\Claude\claude_desktop_config.json` (Windows) | [Claude Desktop MCP Setup](https://support.claude.com/en/articles/10949351-getting-started-with-local-mcp-servers-on-claude-desktop) |
62
63
 
63
64
  ## Remote MCP Server (preview)
64
65
 
@@ -106,6 +107,10 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
106
107
  * List Microsoft Foundry agent threads
107
108
  * Get messages of a Microsoft Foundry thread
108
109
 
110
+ ### 📊 Azure Advisor
111
+
112
+ * "List my Advisor recommendations"
113
+
109
114
  ### 🔎 Azure AI Search
110
115
 
111
116
  * "What indexes do I have in my Azure AI Search service 'mysvc'?"
@@ -274,12 +279,18 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
274
279
  * "Get details about my Storage container"
275
280
  * "Upload my file to the blob container"
276
281
 
282
+ ### 🔄 Azure Migrate
283
+
284
+ * "Generate a Platform Landing Zone"
285
+ * "Turn off DDoS protection in my Platform Landing Zone"
286
+ * "Turn off Bastion host in my Platform Landing Zone"
277
287
 
278
288
  ## Complete List of Supported Azure Services
279
289
 
280
290
  The Azure MCP Server provides tools for interacting with **41+ Azure service areas**:
281
291
 
282
292
  - 🧮 **Microsoft Foundry** - AI model management, AI model deployment, and knowledge index management
293
+ - 📊 **Azure Advisor** - Advisor recommendations
283
294
  - 🔎 **Azure AI Search** - Search engine/vector database operations
284
295
  - 🎤 **Azure AI Services Speech** - Speech-to-text recognition and text-to-speech synthesis
285
296
  - ⚙️ **Azure App Configuration** - Configuration management
@@ -303,6 +314,7 @@ The Azure MCP Server provides tools for interacting with **41+ Azure service are
303
314
  - 🚀 **Azure Managed Grafana** - Monitoring dashboards
304
315
  - 🗃️ **Azure Managed Lustre** - High-performance Lustre filesystem operations
305
316
  - 🏪 **Azure Marketplace** - Product discovery
317
+ - 🔄 **Azure Migrate** - Platform Landing Zone generation and modification guidance
306
318
  - 📈 **Azure Monitor** - Logging, metrics, and health monitoring
307
319
  - ⚖️ **Azure Policy** - Policies set to enforce organizational standards
308
320
  - ⚙️ **Azure Native ISV Services** - Third-party integrations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "2.0.0-beta.12",
3
+ "version": "2.0.0-beta.14",
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-arm64": "2.0.0-beta.12",
37
- "@azure/mcp-linux-arm64": "2.0.0-beta.12",
38
- "@azure/mcp-win32-arm64": "2.0.0-beta.12",
39
- "@azure/mcp-darwin-x64": "2.0.0-beta.12",
40
- "@azure/mcp-win32-x64": "2.0.0-beta.12",
41
- "@azure/mcp-linux-x64": "2.0.0-beta.12"
36
+ "@azure/mcp-darwin-arm64": "2.0.0-beta.14",
37
+ "@azure/mcp-linux-x64": "2.0.0-beta.14",
38
+ "@azure/mcp-linux-arm64": "2.0.0-beta.14",
39
+ "@azure/mcp-win32-x64": "2.0.0-beta.14",
40
+ "@azure/mcp-darwin-x64": "2.0.0-beta.14",
41
+ "@azure/mcp-win32-arm64": "2.0.0-beta.14"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node ./scripts/post-install-script.js"