@azure/mcp-darwin-x64 2.0.0-beta.1 → 2.0.0-beta.3
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 +17 -4
- package/dist/azmcp +0 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -54,6 +54,7 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
54
54
|
| **Claude Code** | `~/.claude.json` or `.mcp.json` (project) | [Claude Code MCP Configuration](https://scottspence.com/posts/configuring-mcp-tools-in-claude-code) |
|
|
55
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
56
|
| **Cursor** | `~/.cursor/mcp.json` or `.cursor/mcp.json` | [Cursor MCP Documentation](https://docs.cursor.com/context/model-context-protocol) |
|
|
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) |
|
|
57
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) |
|
|
58
59
|
| **Visual Studio** | `.mcp.json` (solution/workspace) | [Visual Studio MCP Setup](https://learn.microsoft.com/visualstudio/ide/mcp-servers?view=vs-2022) |
|
|
59
60
|
| **VS Code** | `.vscode/mcp.json` (workspace)<br>`settings.json` (user) | [VS Code MCP Documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) |
|
|
@@ -78,11 +79,19 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
78
79
|
|
|
79
80
|
### 🧮 Azure AI Foundry
|
|
80
81
|
|
|
81
|
-
* List
|
|
82
|
-
* Deploy
|
|
83
|
-
* List
|
|
82
|
+
* List AI Foundry models
|
|
83
|
+
* Deploy AI Foundry models
|
|
84
|
+
* List AI Foundry model deployments
|
|
84
85
|
* List knowledge indexes
|
|
85
86
|
* Get knowledge index schema configuration
|
|
87
|
+
* Create AI Foundry agents
|
|
88
|
+
* List AI Foundry agents
|
|
89
|
+
* Connect and query AI Foundry agents
|
|
90
|
+
* Evaluate AI Foundry agents
|
|
91
|
+
* Get SDK samples for interacting with AI Foundry agent
|
|
92
|
+
* Create AI Foundry agent threads
|
|
93
|
+
* List AI Foundry agent threads
|
|
94
|
+
* Get messages of an AI Foundry thread
|
|
86
95
|
|
|
87
96
|
### 🔎 Azure AI Search
|
|
88
97
|
|
|
@@ -95,6 +104,9 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
95
104
|
* "Recognize speech from my audio file with language detection"
|
|
96
105
|
* "Transcribe speech from audio with profanity filtering"
|
|
97
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"
|
|
98
110
|
|
|
99
111
|
### ⚙️ Azure App Configuration
|
|
100
112
|
|
|
@@ -236,7 +248,8 @@ The Azure MCP Server provides tools for interacting with **40+ Azure service are
|
|
|
236
248
|
|
|
237
249
|
- 🧮 **Azure AI Foundry** - AI model management, AI model deployment, and knowledge index management
|
|
238
250
|
- 🔎 **Azure AI Search** - Search engine/vector database operations
|
|
239
|
-
- 🎤 **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
|
|
240
253
|
- ⚙️ **Azure App Configuration** - Configuration management
|
|
241
254
|
- 🕸️ **Azure App Service** - Web app hosting
|
|
242
255
|
- 🛡️ **Azure Best Practices** - Secure, production-grade guidance
|
package/dist/azmcp
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/mcp-darwin-x64",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.3",
|
|
4
4
|
"description": "Azure MCP Server - Model Context Protocol implementation for Azure, for darwin 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
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/microsoft/mcp.git"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=20.0.0"
|