msmcp-azure 2.0.0b14__py3-none-win_arm64.whl → 2.0.0b15__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.0b15.dist-info}/METADATA +67 -2
- msmcp_azure-2.0.0b15.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.0b15.dist-info}/WHEEL +0 -0
- {msmcp_azure-2.0.0b14.dist-info → msmcp_azure-2.0.0b15.dist-info}/entry_points.txt +0 -0
- {msmcp_azure-2.0.0b14.dist-info → msmcp_azure-2.0.0b15.dist-info}/licenses/LICENSE +0 -0
- {msmcp_azure-2.0.0b14.dist-info → msmcp_azure-2.0.0b15.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.15" # 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.0b15
|
|
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,6 +50,7 @@ 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
56
|
- [Microsoft Foundry](#microsoft-foundry)
|
|
@@ -161,7 +162,7 @@ To verify the .NET version, run the following command in the terminal: `dotnet -
|
|
|
161
162
|
```json
|
|
162
163
|
{
|
|
163
164
|
"mcpServers": {
|
|
164
|
-
"
|
|
165
|
+
"Azure MCP Server": {
|
|
165
166
|
"command": "npx",
|
|
166
167
|
"args": [
|
|
167
168
|
"-y",
|
|
@@ -173,6 +174,26 @@ To verify the .NET version, run the following command in the terminal: `dotnet -
|
|
|
173
174
|
}
|
|
174
175
|
}
|
|
175
176
|
```
|
|
177
|
+
#### Option 3: Configure using Python (uvx)
|
|
178
|
+
- 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`.
|
|
179
|
+
- Configure the `mcp.json` file with the following:
|
|
180
|
+
|
|
181
|
+
```json
|
|
182
|
+
{
|
|
183
|
+
"mcpServers": {
|
|
184
|
+
"Azure MCP Server": {
|
|
185
|
+
"command": "uvx",
|
|
186
|
+
"args": [
|
|
187
|
+
"--from",
|
|
188
|
+
"msmcp-azure",
|
|
189
|
+
"azmcp",
|
|
190
|
+
"server",
|
|
191
|
+
"start"
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
```
|
|
176
197
|
**Note:** When manually configuring Visual Studio and Visual Studio Code, use `servers` instead of `mcpServers` as the root object.
|
|
177
198
|
|
|
178
199
|
**Client-Specific Configuration**
|
|
@@ -256,6 +277,50 @@ To understand how platform-specific binaries are installed with @azure/mcp, revi
|
|
|
256
277
|
|
|
257
278
|
</details>
|
|
258
279
|
|
|
280
|
+
### PyPI
|
|
281
|
+
|
|
282
|
+
Install the Python package: [msmcp-azure](https://pypi.org/project/msmcp-azure/).
|
|
283
|
+
|
|
284
|
+
**Run directly without installation (using uvx - recommended):**
|
|
285
|
+
|
|
286
|
+
```bash
|
|
287
|
+
uvx --from msmcp-azure azmcp server start
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
**Install as a global tool (using pipx):**
|
|
291
|
+
|
|
292
|
+
```bash
|
|
293
|
+
pipx install msmcp-azure
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
**Install using pip:**
|
|
297
|
+
|
|
298
|
+
```bash
|
|
299
|
+
pip install msmcp-azure
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
**Install a specific version:**
|
|
303
|
+
|
|
304
|
+
```bash
|
|
305
|
+
pip install msmcp-azure==<version>
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
<details>
|
|
309
|
+
<summary>Additional instructions</summary>
|
|
310
|
+
|
|
311
|
+
**When to use uvx vs pipx vs pip:**
|
|
312
|
+
|
|
313
|
+
- **uvx (recommended):** Run directly without installation. Best for MCP server usage where you want the latest version without managing installations.
|
|
314
|
+
- **pipx:** Install as an isolated global tool. Best when you want a persistent installation that doesn't interfere with other Python projects.
|
|
315
|
+
- **pip:** Install in the current Python environment. Best for integration into existing Python projects or virtual environments.
|
|
316
|
+
|
|
317
|
+
**Prerequisites:**
|
|
318
|
+
|
|
319
|
+
- [uv](https://docs.astral.sh/uv/getting-started/installation/) for `uvx` commands
|
|
320
|
+
- Python 3.10+ for `pip` or `pipx` installation
|
|
321
|
+
|
|
322
|
+
</details>
|
|
323
|
+
|
|
259
324
|
### Docker
|
|
260
325
|
|
|
261
326
|
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).
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
msmcp_azure/__init__.py,sha256=NRN6BqVLnI6V55VstiaCjCK0BQzanpT9E7bQhsaEM0g,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=yoU__kvEHETp2uZYea-UrwfD8bTMujM4ZFhqhVrZv9s,101852736
|
|
5
|
+
msmcp_azure-2.0.0b15.dist-info/METADATA,sha256=L6B6jphkWJvN9H_xW1i_4krPcBVzgs6ZaWyG3GnBcFA,46365
|
|
6
|
+
msmcp_azure-2.0.0b15.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
7
|
+
msmcp_azure-2.0.0b15.dist-info/entry_points.txt,sha256=qkVQoIUJ6XBl2rLVTTNS8HaO4r7fClQZQMxdS_RM8Hg,43
|
|
8
|
+
msmcp_azure-2.0.0b15.dist-info/licenses/LICENSE,sha256=il2O-3CULmUDL5MMdh0Jf-60GnUX69BMnS5Ow3ZAccU,1077
|
|
9
|
+
msmcp_azure-2.0.0b15.dist-info/licenses/NOTICE.txt,sha256=BCmml9KKvnXOs9BhTr4JL6WI2qx0LEorgQS4PnLUFio,824667
|
|
10
|
+
msmcp_azure-2.0.0b15.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
|