@azure/mcp-win32-x64 2.0.0-beta.2 → 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/NOTICE.txt +1 -1
- package/README.md +25 -3
- package/dist/azmcp.exe +0 -0
- package/package.json +3 -3
package/NOTICE.txt
CHANGED
package/README.md
CHANGED
|
@@ -104,6 +104,9 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
104
104
|
* "Recognize speech from my audio file with language detection"
|
|
105
105
|
* "Transcribe speech from audio with profanity filtering"
|
|
106
106
|
* "Transcribe audio with phrase hints for better accuracy"
|
|
107
|
+
* "Convert text to speech and save to output.wav"
|
|
108
|
+
* "Synthesize speech from 'Hello, welcome to Azure' with Spanish voice"
|
|
109
|
+
* "Generate MP3 audio from text with high quality format"
|
|
107
110
|
|
|
108
111
|
### ⚙️ Azure App Configuration
|
|
109
112
|
|
|
@@ -245,7 +248,8 @@ The Azure MCP Server provides tools for interacting with **40+ Azure service are
|
|
|
245
248
|
|
|
246
249
|
- 🧮 **Azure AI Foundry** - AI model management, AI model deployment, and knowledge index management
|
|
247
250
|
- 🔎 **Azure AI Search** - Search engine/vector database operations
|
|
248
|
-
- 🎤 **Azure AI Services Speech** - Speech-to-text recognition
|
|
251
|
+
- 🎤 **Azure AI Services Speech** - Speech-to-text recognition and text-to-speech synthesis
|
|
252
|
+
- 🤖 **Azure AI Best Practices** - AI app development guidance for Azure AI Foundry and Microsoft Agent Framework
|
|
249
253
|
- ⚙️ **Azure App Configuration** - Configuration management
|
|
250
254
|
- 🕸️ **Azure App Service** - Web app hosting
|
|
251
255
|
- 🛡️ **Azure Best Practices** - Secure, production-grade guidance
|
|
@@ -317,9 +321,27 @@ The software may collect information about you and your use of the software and
|
|
|
317
321
|
|
|
318
322
|
### Telemetry Configuration
|
|
319
323
|
|
|
320
|
-
Telemetry collection is on by default.
|
|
324
|
+
Telemetry collection is on by default. The server supports two telemetry streams:
|
|
321
325
|
|
|
322
|
-
|
|
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
|
+
```
|
|
323
345
|
|
|
324
346
|
## Compliance Responsibility
|
|
325
347
|
|
package/dist/azmcp.exe
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp-win32-x64",
|
|
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, for win32 on x64",
|
|
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"
|