msmcp-azure 2.0.0b14__py3-none-win_arm64.whl → 2.0.0b16__py3-none-win_arm64.whl
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.
- msmcp_azure/__init__.py +1 -1
- msmcp_azure/bin/azmcp.exe +0 -0
- {msmcp_azure-2.0.0b14.dist-info → msmcp_azure-2.0.0b16.dist-info}/METADATA +81 -14
- msmcp_azure-2.0.0b16.dist-info/RECORD +10 -0
- msmcp_azure-2.0.0b14.dist-info/RECORD +0 -10
- {msmcp_azure-2.0.0b14.dist-info → msmcp_azure-2.0.0b16.dist-info}/WHEEL +0 -0
- {msmcp_azure-2.0.0b14.dist-info → msmcp_azure-2.0.0b16.dist-info}/entry_points.txt +0 -0
- {msmcp_azure-2.0.0b14.dist-info → msmcp_azure-2.0.0b16.dist-info}/licenses/LICENSE +0 -0
- {msmcp_azure-2.0.0b14.dist-info → msmcp_azure-2.0.0b16.dist-info}/licenses/NOTICE.txt +0 -0
msmcp_azure/__init__.py
CHANGED
|
@@ -12,7 +12,7 @@ import subprocess
|
|
|
12
12
|
import sys
|
|
13
13
|
from pathlib import Path
|
|
14
14
|
|
|
15
|
-
__version__ = "2.0.0-beta.
|
|
15
|
+
__version__ = "2.0.0-beta.16" # Will be replaced during packaging
|
|
16
16
|
|
|
17
17
|
# Debug mode check
|
|
18
18
|
DEBUG = os.environ.get("DEBUG", "").lower() in ("true", "1", "*") or "mcp" in os.environ.get("DEBUG", "")
|
msmcp_azure/bin/azmcp.exe
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: msmcp-azure
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.0b16
|
|
4
4
|
Summary: Azure MCP Server - Model Context Protocol implementation for Azure
|
|
5
5
|
Project-URL: Homepage, https://github.com/Microsoft/mcp/blob/main/servers/Azure.Mcp.Server#readme
|
|
6
6
|
Project-URL: Documentation, https://github.com/Microsoft/mcp/blob/main/servers/Azure.Mcp.Server#readme
|
|
@@ -50,10 +50,9 @@ All Azure MCP tools in a single server. The Azure MCP Server implements the [MCP
|
|
|
50
50
|
- [Package Manager](#package-manager)
|
|
51
51
|
- [NuGet](#nuget)
|
|
52
52
|
- [NPM](#npm)
|
|
53
|
+
- [PyPI](#pypi)
|
|
53
54
|
- [Docker](#docker)
|
|
54
55
|
- [Remote MCP Server (preview)](#remote-mcp-server-preview)
|
|
55
|
-
- [Microsoft Foundry](#microsoft-foundry)
|
|
56
|
-
- [Microsoft Copilot Studio](#microsoft-copilot-studio)
|
|
57
56
|
- [Usage](#usage)
|
|
58
57
|
- [Getting Started](#getting-started)
|
|
59
58
|
- [What can you do with the Azure MCP Server?](#what-can-you-do-with-the-azure-mcp-server)
|
|
@@ -161,7 +160,7 @@ To verify the .NET version, run the following command in the terminal: `dotnet -
|
|
|
161
160
|
```json
|
|
162
161
|
{
|
|
163
162
|
"mcpServers": {
|
|
164
|
-
"
|
|
163
|
+
"Azure MCP Server": {
|
|
165
164
|
"command": "npx",
|
|
166
165
|
"args": [
|
|
167
166
|
"-y",
|
|
@@ -173,6 +172,26 @@ To verify the .NET version, run the following command in the terminal: `dotnet -
|
|
|
173
172
|
}
|
|
174
173
|
}
|
|
175
174
|
```
|
|
175
|
+
#### Option 3: Configure using Python (uvx)
|
|
176
|
+
- To use Azure MCP server from Python, you must have [uv](https://docs.astral.sh/uv/getting-started/installation/) installed. uv is a fast Python package installer and resolver. To verify your installation run: `uv --version` and `uvx --version`.
|
|
177
|
+
- Configure the `mcp.json` file with the following:
|
|
178
|
+
|
|
179
|
+
```json
|
|
180
|
+
{
|
|
181
|
+
"mcpServers": {
|
|
182
|
+
"Azure MCP Server": {
|
|
183
|
+
"command": "uvx",
|
|
184
|
+
"args": [
|
|
185
|
+
"--from",
|
|
186
|
+
"msmcp-azure",
|
|
187
|
+
"azmcp",
|
|
188
|
+
"server",
|
|
189
|
+
"start"
|
|
190
|
+
]
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
```
|
|
176
195
|
**Note:** When manually configuring Visual Studio and Visual Studio Code, use `servers` instead of `mcpServers` as the root object.
|
|
177
196
|
|
|
178
197
|
**Client-Specific Configuration**
|
|
@@ -256,6 +275,50 @@ To understand how platform-specific binaries are installed with @azure/mcp, revi
|
|
|
256
275
|
|
|
257
276
|
</details>
|
|
258
277
|
|
|
278
|
+
### PyPI
|
|
279
|
+
|
|
280
|
+
Install the Python package: [msmcp-azure](https://pypi.org/project/msmcp-azure/).
|
|
281
|
+
|
|
282
|
+
**Run directly without installation (using uvx - recommended):**
|
|
283
|
+
|
|
284
|
+
```bash
|
|
285
|
+
uvx --from msmcp-azure azmcp server start
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
**Install as a global tool (using pipx):**
|
|
289
|
+
|
|
290
|
+
```bash
|
|
291
|
+
pipx install msmcp-azure
|
|
292
|
+
```
|
|
293
|
+
|
|
294
|
+
**Install using pip:**
|
|
295
|
+
|
|
296
|
+
```bash
|
|
297
|
+
pip install msmcp-azure
|
|
298
|
+
```
|
|
299
|
+
|
|
300
|
+
**Install a specific version:**
|
|
301
|
+
|
|
302
|
+
```bash
|
|
303
|
+
pip install msmcp-azure==<version>
|
|
304
|
+
```
|
|
305
|
+
|
|
306
|
+
<details>
|
|
307
|
+
<summary>Additional instructions</summary>
|
|
308
|
+
|
|
309
|
+
**When to use uvx vs pipx vs pip:**
|
|
310
|
+
|
|
311
|
+
- **uvx (recommended):** Run directly without installation. Best for MCP server usage where you want the latest version without managing installations.
|
|
312
|
+
- **pipx:** Install as an isolated global tool. Best when you want a persistent installation that doesn't interfere with other Python projects.
|
|
313
|
+
- **pip:** Install in the current Python environment. Best for integration into existing Python projects or virtual environments.
|
|
314
|
+
|
|
315
|
+
**Prerequisites:**
|
|
316
|
+
|
|
317
|
+
- [uv](https://docs.astral.sh/uv/getting-started/installation/) for `uvx` commands
|
|
318
|
+
- Python 3.10+ for `pip` or `pipx` installation
|
|
319
|
+
|
|
320
|
+
</details>
|
|
321
|
+
|
|
259
322
|
### Docker
|
|
260
323
|
|
|
261
324
|
Run the Azure MCP server as a Docker container for easy deployment and isolation. The container image is available at [mcr.microsoft.com/azure-sdk/azure-mcp](https://mcr.microsoft.com/artifact/mar/azure-sdk/azure-mcp).
|
|
@@ -706,14 +769,8 @@ class Program
|
|
|
706
769
|
|
|
707
770
|
Microsoft 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).
|
|
708
771
|
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
1. Follow the [deployment guide](https://github.com/Azure-Samples/azmcp-foundry-aca-mi) for Microsoft Foundry.
|
|
712
|
-
2. See [Microsoft Foundry's MCP documentation](https://learn.microsoft.com/azure/ai-foundry/agents/how-to/tools/model-context-protocol) for more details.
|
|
772
|
+
Check out the remote hosting [azd templates](https://github.com/microsoft/mcp/blob/main/servers/Azure.Mcp.Server/azd-templates/README.md) for deployment options.
|
|
713
773
|
|
|
714
|
-
### Microsoft Copilot Studio
|
|
715
|
-
|
|
716
|
-
1. Follow the [deployment guide](https://github.com/Azure-Samples/azmcp-copilot-studio-aca-mi) for Microsoft Copilot Studio.
|
|
717
774
|
|
|
718
775
|
# Usage
|
|
719
776
|
|
|
@@ -803,7 +860,16 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
803
860
|
* "Send an email from my communication service endpoint with custom sender name and multiple recipients"
|
|
804
861
|
* "Send an email to 'user1@example.com' and 'user2@example.com' with subject 'Team Update' and message 'Please review the attached document.'"
|
|
805
862
|
|
|
806
|
-
###
|
|
863
|
+
### � Azure Compute
|
|
864
|
+
|
|
865
|
+
* "List all virtual machines in my subscription"
|
|
866
|
+
* "Show me all VMs in resource group 'my-resource-group'"
|
|
867
|
+
* "Get details for virtual machine 'my-vm' in resource group 'my-resource-group'"
|
|
868
|
+
* "Get virtual machine 'my-vm' with instance view including power state and runtime status"
|
|
869
|
+
* "Show me the power state and provisioning status of VM 'my-vm'"
|
|
870
|
+
* "What is the current status of my virtual machine 'my-vm'?"
|
|
871
|
+
|
|
872
|
+
### �📦 Azure Container Apps
|
|
807
873
|
|
|
808
874
|
* "List the container apps in my subscription"
|
|
809
875
|
* "Show me the container apps in my 'my-resource-group' resource group"
|
|
@@ -928,7 +994,7 @@ Microsoft Foundry and Microsoft Copilot Studio require remote MCP server endpoin
|
|
|
928
994
|
|
|
929
995
|
## Complete List of Supported Azure Services
|
|
930
996
|
|
|
931
|
-
The Azure MCP Server provides tools for interacting with **
|
|
997
|
+
The Azure MCP Server provides tools for interacting with **42+ Azure service areas**:
|
|
932
998
|
|
|
933
999
|
- 🧮 **Microsoft Foundry** - AI model management, AI model deployment, and knowledge index management
|
|
934
1000
|
- 📊 **Azure Advisor** - Advisor recommendations
|
|
@@ -939,7 +1005,8 @@ The Azure MCP Server provides tools for interacting with **41+ Azure service are
|
|
|
939
1005
|
- 🛡️ **Azure Best Practices** - Secure, production-grade guidance
|
|
940
1006
|
- 🖥️ **Azure CLI Generate** - Generate Azure CLI commands from natural language
|
|
941
1007
|
- 📞 **Azure Communication Services** - SMS messaging and communication
|
|
942
|
-
-
|
|
1008
|
+
- � **Azure Compute** - Virtual Machine and Virtual Machine Scale Set management
|
|
1009
|
+
- �🔐 **Azure Confidential Ledger** - Tamper-proof ledger operations
|
|
943
1010
|
- 📦 **Azure Container Apps** - Container hosting
|
|
944
1011
|
- 📦 **Azure Container Registry (ACR)** - Container registry management
|
|
945
1012
|
- 📊 **Azure Cosmos DB** - NoSQL database operations
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
msmcp_azure/__init__.py,sha256=Yvl_zDq8z2HAk2zHq015thQUZivEKJ9M8WiTRmCcLSE,2684
|
|
2
|
+
msmcp_azure/bin/Azure.Mcp.Tools.AzureMigrate.xml,sha256=6BMDW6jrBpLuUf6GlNzt7DWc2d1k_lUToOouNrzzGdI,51540
|
|
3
|
+
msmcp_azure/bin/appsettings.json,sha256=kGe8D_RaJNBz2vERCymxzTzRkz9WRPbm4nw4aZLWajE,119
|
|
4
|
+
msmcp_azure/bin/azmcp.exe,sha256=oXkHFFd6lN5JhWOog6JOvHp7e8ZeJ-KEgfdiwG2ifrU,102501344
|
|
5
|
+
msmcp_azure-2.0.0b16.dist-info/METADATA,sha256=PdRsCMlQSx5sZl-DyTfij5Y7E2UbkSpuFpZpD0Xv2w8,46492
|
|
6
|
+
msmcp_azure-2.0.0b16.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
7
|
+
msmcp_azure-2.0.0b16.dist-info/entry_points.txt,sha256=qkVQoIUJ6XBl2rLVTTNS8HaO4r7fClQZQMxdS_RM8Hg,43
|
|
8
|
+
msmcp_azure-2.0.0b16.dist-info/licenses/LICENSE,sha256=il2O-3CULmUDL5MMdh0Jf-60GnUX69BMnS5Ow3ZAccU,1077
|
|
9
|
+
msmcp_azure-2.0.0b16.dist-info/licenses/NOTICE.txt,sha256=BCmml9KKvnXOs9BhTr4JL6WI2qx0LEorgQS4PnLUFio,824667
|
|
10
|
+
msmcp_azure-2.0.0b16.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
msmcp_azure/__init__.py,sha256=20PWsvi4ran0n-kPBMv6JjkRHsCrZ-z9zvIz1QOvMSc,2684
|
|
2
|
-
msmcp_azure/bin/Azure.Mcp.Tools.AzureMigrate.xml,sha256=6BMDW6jrBpLuUf6GlNzt7DWc2d1k_lUToOouNrzzGdI,51540
|
|
3
|
-
msmcp_azure/bin/appsettings.json,sha256=kGe8D_RaJNBz2vERCymxzTzRkz9WRPbm4nw4aZLWajE,119
|
|
4
|
-
msmcp_azure/bin/azmcp.exe,sha256=-ebNyn6AeGhxdCZ1V6fFIIN5axtFJ7vpQyCURxjEgck,101852736
|
|
5
|
-
msmcp_azure-2.0.0b14.dist-info/METADATA,sha256=GpFB-iXP2KAulKkqZNMnK4yMGoaEhS8ThBMz7VIgYss,44522
|
|
6
|
-
msmcp_azure-2.0.0b14.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
7
|
-
msmcp_azure-2.0.0b14.dist-info/entry_points.txt,sha256=qkVQoIUJ6XBl2rLVTTNS8HaO4r7fClQZQMxdS_RM8Hg,43
|
|
8
|
-
msmcp_azure-2.0.0b14.dist-info/licenses/LICENSE,sha256=il2O-3CULmUDL5MMdh0Jf-60GnUX69BMnS5Ow3ZAccU,1077
|
|
9
|
-
msmcp_azure-2.0.0b14.dist-info/licenses/NOTICE.txt,sha256=BCmml9KKvnXOs9BhTr4JL6WI2qx0LEorgQS4PnLUFio,824667
|
|
10
|
-
msmcp_azure-2.0.0b14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|