@azure/mcp 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 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 Azure Foundry models
82
- * Deploy foundry models
83
- * List foundry model deployments
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/index.js CHANGED
@@ -1,11 +1,12 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  const os = require('os')
4
+ const packageJson = require('./package.json')
4
5
 
5
6
  // Check if DEBUG environment variable is set
6
7
  const isDebugMode = process.env.DEBUG && (
7
8
  process.env.DEBUG.toLowerCase() === 'true' ||
8
- process.env.DEBUG.includes('azure-mcp') ||
9
+ process.env.DEBUG.includes('mcp') ||
9
10
  process.env.DEBUG === '*'
10
11
  )
11
12
 
@@ -25,7 +26,9 @@ process.argv.forEach((val, index) => {
25
26
  const platform = os.platform()
26
27
  const arch = os.arch()
27
28
 
28
- const platformPackageName = `@azure/mcp-${platform}-${arch}`
29
+ const packageName = packageJson.name
30
+ const packageVersion = packageJson.version
31
+ const platformPackageName = `${packageName}-${platform}-${arch}`
29
32
 
30
33
  // Try to load the platform package
31
34
  let platformPackage
@@ -34,58 +37,59 @@ try {
34
37
  platformPackage = require(platformPackageName)
35
38
  } catch (err) {
36
39
  debugLog(`Failed to require ${platformPackageName}, attempting auto-install: ${err.message}`)
37
-
40
+
38
41
  // Try to automatically install the missing platform package
39
42
  try {
40
43
  const { execSync } = require('child_process')
41
-
44
+
42
45
  console.error(`Installing missing platform package: ${platformPackageName}`)
43
-
46
+
44
47
  // Try to install the platform package
45
48
  try {
46
- execSync(`npm install ${platformPackageName}@latest`, {
49
+ execSync(`npm install ${platformPackageName}@${packageVersion}`, {
47
50
  stdio: ['inherit', 'inherit', 'pipe'], // Only pipe stderr to capture errors
48
51
  timeout: 60000 // 60 second timeout
49
52
  })
50
53
  } catch (npmErr) {
51
54
  // If npm install fails, try with --no-save and different install strategies
52
55
  debugLog(`npm install failed, trying alternative installation methods: ${npmErr.message}`)
53
-
56
+
54
57
  // Try with --no-save and --prefer-online
55
- execSync(`npm install ${platformPackageName}@latest --no-save --prefer-online`, {
58
+ execSync(`npm install ${platformPackageName}@${packageVersion} --no-save --prefer-online`, {
56
59
  stdio: ['inherit', 'inherit', 'pipe'],
57
60
  timeout: 60000
58
61
  })
59
62
  }
60
-
63
+
61
64
  // Clear module cache and try to require again after installation
62
65
  Object.keys(require.cache).forEach(key => {
63
66
  if (key.includes(platformPackageName)) {
64
67
  delete require.cache[key]
65
68
  }
66
69
  })
67
-
70
+
68
71
  platformPackage = require(platformPackageName)
69
-
72
+
70
73
  console.error(`āœ… Successfully installed and loaded ${platformPackageName}`)
71
-
74
+
72
75
  } catch (installErr) {
73
76
  debugLog(`Auto-install failed: ${installErr.message}`)
74
-
77
+
75
78
  console.error(`\nāŒ Failed to load platform specific package '${platformPackageName}'`)
76
79
  console.error(`\nšŸ” Troubleshooting steps:`)
77
- console.error(`\n1. Clear npm cache and reinstall:`)
80
+ console.error(`\n1. Clear npm cache:`)
78
81
  console.error(` npm cache clean --force`)
79
- console.error(` npm uninstall -g @azure/mcp`)
80
- console.error(` npm install -g @azure/mcp@latest`)
81
- console.error(`\n2. If using npx, clear the cache:`)
82
- console.error(` npx clear-npx-cache`)
83
- console.error(` npx -y @azure/mcp@latest server start`)
84
- console.error(`\n3. Manually install the platform package:`)
82
+ console.error(`\n2. If installing as a global tool, uninstall and reinstall:`)
83
+ console.error(` npm uninstall -g ${packageName}`)
84
+ console.error(` npm install -g ${packageName}`)
85
+ console.error(`\n3. If using npx, clear the npx cache and try again:`)
86
+ console.error(` npx -y clear-npx-cache`)
87
+ console.error(` npx -y ${packageName}@latest --version`)
88
+ console.error(`\n4. Manually install the platform package to check compatibility:`)
85
89
  console.error(` npm install ${platformPackageName}@latest`)
86
- console.error(`\n4. Check your internet connection and try again`)
87
- console.error(`\n5. If the issue persists, please report it at:`)
88
- console.error(` https://github.com/Azure/azure-mcp/issues`)
90
+ console.error(`\n5. Check your internet connection and try again`)
91
+ console.error(`\n6. If the issue persists, please report it at:`)
92
+ console.error(` https://github.com/microsoft/mcp/issues`)
89
93
  console.error(`\nOriginal error: ${err.message}`)
90
94
  console.error(`Install error: ${installErr.message}`)
91
95
  process.exit(1)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/mcp",
3
- "version": "2.0.0-beta.1",
3
+ "version": "2.0.0-beta.3",
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
- "url": "https://github.com/microsoft/mcp.git",
18
- "type": "git"
17
+ "type": "git",
18
+ "url": "https://github.com/microsoft/mcp.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-win32-arm64": "2.0.0-beta.1",
37
- "@azure/mcp-darwin-arm64": "2.0.0-beta.1",
38
- "@azure/mcp-win32-x64": "2.0.0-beta.1",
39
- "@azure/mcp-darwin-x64": "2.0.0-beta.1",
40
- "@azure/mcp-linux-arm64": "2.0.0-beta.1",
41
- "@azure/mcp-linux-x64": "2.0.0-beta.1"
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"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node ./scripts/post-install-script.js"
@@ -1,23 +1,19 @@
1
- const fs = require('fs')
2
- const path = require('path')
3
1
  const os = require('os');
4
2
 
5
3
  const platform = os.platform();
6
4
  const arch = os.arch();
7
5
 
8
- const pkgJsonPath = path.join(__dirname, '..', 'package.json');
9
- let baseName = '@azure/mcp';
10
- try {
11
- const pkg = JSON.parse(fs.readFileSync(pkgJsonPath, 'utf8'));
12
- if (pkg.name) {
13
- baseName = pkg.name;
14
- }
15
- } catch (e) {
16
- // fallback to default
6
+ let baseName = '';
7
+ try{
8
+ const packageJson = require('../package.json');
9
+ baseName = packageJson.name;
10
+ }
11
+ catch (err) {
12
+ console.error('Unable to verify platform package installation. Error reading package.json.');
13
+ process.exit(1);
17
14
  }
18
15
 
19
16
  const requiredPackage = `${baseName}-${platform}-${arch}`;
20
-
21
17
  try {
22
18
  require.resolve(requiredPackage);
23
19
  } catch (err) {