@azure/mcp 2.0.0-beta.3 → 2.0.0-beta.5

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 +34 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # <img height="36" width="36" src="https://cdn-dynmedia-1.microsoft.com/is/content/microsoftcorp/acom_social_icon_azure" alt="Microsoft Azure Logo" /> Azure MCP Server NPM Package
2
2
 
3
- All Azure MCP tools in a single server. 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.
4
3
 
4
+ All Azure MCP tools in a single server. 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.
5
5
  ## Table of Contents
6
6
  - [Overview](#overview)
7
7
  - [Installation](#installation)
@@ -60,6 +60,19 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
60
60
  | **VS Code** | `.vscode/mcp.json` (workspace)<br>`settings.json` (user) | [VS Code MCP Documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) |
61
61
  | **Windsurf** | `~/.codeium/windsurf/mcp_config.json` | [Windsurf Cascade MCP Integration](https://docs.windsurf.com/windsurf/cascade/mcp) |
62
62
 
63
+ ## Remote MCP Server (preview)
64
+
65
+ Azure AI Foundry and Microsoft Copilot Studio require remote MCP server endpoints. To self-host the Azure MCP Server for use with these platforms, deploy it as a remote MCP server on [Azure Container Apps](https://learn.microsoft.com/azure/container-apps/overview).
66
+
67
+ ### Azure AI Foundry
68
+
69
+ 1. Follow the [deployment guide](https://github.com/microsoft/mcp/tree/main/servers/Azure.Mcp.Server/azd-templates/aca-aifoundry-managed-identity/) for Azure AI Foundry.
70
+ 2. See [Azure AI Foundry's MCP documentation](https://learn.microsoft.com/azure/ai-foundry/agents/how-to/tools/model-context-protocol) for more details.
71
+
72
+ ### Microsoft Copilot Studio
73
+
74
+ 1. Follow the [deployment guide](https://github.com/microsoft/mcp/tree/main/servers/Azure.Mcp.Server/azd-templates/aca-copilot-studio-managed-identity/) for Microsoft Copilot Studio.
75
+
63
76
  # Usage
64
77
 
65
78
  ## Getting Started
@@ -321,9 +334,27 @@ The software may collect information about you and your use of the software and
321
334
 
322
335
  ### Telemetry Configuration
323
336
 
324
- Telemetry collection is on by default.
337
+ Telemetry collection is on by default. The server supports two telemetry streams:
338
+
339
+ 1. **User-provided telemetry**: If you configure your own Application Insights connection string via the `APPLICATIONINSIGHTS_CONNECTION_STRING` environment variable, telemetry will be sent to your Application Insights resource.
340
+
341
+ 2. **Microsoft telemetry**: By default, telemetry is also sent to Microsoft to help improve the product. This can be disabled separately from user-provided telemetry. See [Disabling All Telemetry](#disabling-all-telemetry) section below for more details.
342
+
343
+ #### Disabling All Telemetry
344
+
345
+ To disable all telemetry collection (both user-provided and Microsoft), set the environment variable `AZURE_MCP_COLLECT_TELEMETRY` to `false`:
346
+
347
+ ```bash
348
+ export AZURE_MCP_COLLECT_TELEMETRY=false
349
+ ```
350
+
351
+ #### Disabling Microsoft Telemetry Only
352
+
353
+ To disable only Microsoft telemetry collection while keeping your own Application Insights telemetry active, set the environment variable `AZURE_MCP_COLLECT_TELEMETRY_MICROSOFT` to `false`:
325
354
 
326
- To opt out, set the environment variable `AZURE_MCP_COLLECT_TELEMETRY` to `false` in your environment.
355
+ ```bash
356
+ export AZURE_MCP_COLLECT_TELEMETRY_MICROSOFT=false
357
+ ```
327
358
 
328
359
  ## Compliance Responsibility
329
360
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "2.0.0-beta.3",
3
+ "version": "2.0.0-beta.5",
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-linux-x64": "2.0.0-beta.3",
37
- "@azure/mcp-win32-x64": "2.0.0-beta.3",
38
- "@azure/mcp-darwin-x64": "2.0.0-beta.3",
39
- "@azure/mcp-linux-arm64": "2.0.0-beta.3",
40
- "@azure/mcp-darwin-arm64": "2.0.0-beta.3",
41
- "@azure/mcp-win32-arm64": "2.0.0-beta.3"
36
+ "@azure/mcp-darwin-x64": "2.0.0-beta.5",
37
+ "@azure/mcp-linux-arm64": "2.0.0-beta.5",
38
+ "@azure/mcp-win32-arm64": "2.0.0-beta.5",
39
+ "@azure/mcp-linux-x64": "2.0.0-beta.5",
40
+ "@azure/mcp-win32-x64": "2.0.0-beta.5",
41
+ "@azure/mcp-darwin-arm64": "2.0.0-beta.5"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node ./scripts/post-install-script.js"