@azure/mcp 2.0.0-beta.3 → 2.0.0-beta.4
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 +20 -2
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -321,9 +321,27 @@ The software may collect information about you and your use of the software and
|
|
|
321
321
|
|
|
322
322
|
### Telemetry Configuration
|
|
323
323
|
|
|
324
|
-
Telemetry collection is on by default.
|
|
324
|
+
Telemetry collection is on by default. The server supports two telemetry streams:
|
|
325
325
|
|
|
326
|
-
|
|
326
|
+
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.
|
|
327
|
+
|
|
328
|
+
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.
|
|
329
|
+
|
|
330
|
+
#### Disabling All Telemetry
|
|
331
|
+
|
|
332
|
+
To disable all telemetry collection (both user-provided and Microsoft), set the environment variable `AZURE_MCP_COLLECT_TELEMETRY` to `false`:
|
|
333
|
+
|
|
334
|
+
```bash
|
|
335
|
+
export AZURE_MCP_COLLECT_TELEMETRY=false
|
|
336
|
+
```
|
|
337
|
+
|
|
338
|
+
#### Disabling Microsoft Telemetry Only
|
|
339
|
+
|
|
340
|
+
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`:
|
|
341
|
+
|
|
342
|
+
```bash
|
|
343
|
+
export AZURE_MCP_COLLECT_TELEMETRY_MICROSOFT=false
|
|
344
|
+
```
|
|
327
345
|
|
|
328
346
|
## Compliance Responsibility
|
|
329
347
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.4",
|
|
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
|
-
"
|
|
18
|
-
"
|
|
17
|
+
"url": "https://github.com/microsoft/mcp.git",
|
|
18
|
+
"type": "git"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=20.0.0"
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"arm64"
|
|
34
34
|
],
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@azure/mcp-linux-x64": "2.0.0-beta.
|
|
37
|
-
"@azure/mcp-
|
|
38
|
-
"@azure/mcp-darwin-
|
|
39
|
-
"@azure/mcp-
|
|
40
|
-
"@azure/mcp-
|
|
41
|
-
"@azure/mcp-
|
|
36
|
+
"@azure/mcp-linux-x64": "2.0.0-beta.4",
|
|
37
|
+
"@azure/mcp-darwin-x64": "2.0.0-beta.4",
|
|
38
|
+
"@azure/mcp-darwin-arm64": "2.0.0-beta.4",
|
|
39
|
+
"@azure/mcp-win32-x64": "2.0.0-beta.4",
|
|
40
|
+
"@azure/mcp-win32-arm64": "2.0.0-beta.4",
|
|
41
|
+
"@azure/mcp-linux-arm64": "2.0.0-beta.4"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"postinstall": "node ./scripts/post-install-script.js"
|