File: README.md

package info (click to toggle)
python-azure 20251202%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 786,344 kB
  • sloc: python: 6,510,493; ansic: 804; javascript: 287; sh: 204; makefile: 198; xml: 109
file content (36 lines) | stat: -rw-r--r-- 1,467 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Azure SDK MCP Servers

This document details how to author, publish and use [MCP servers](https://github.com/modelcontextprotocol) for azure sdk team usage.

## Using the Azure SDK MCP Server

Run the below command to download and run the azure sdk engsys mcp server manually:

```
<repo root>/eng/common/mcp/azure-sdk-mcp.ps1 -Run
```

To install the mcp server for use within vscode copilot agent mode, run the following then launch vscode from the repository root.

```
<repo root>/eng/common/mcp/azure-sdk-mcp.ps1 -UpdateVsCodeConfig
```

*When updating the config the script will not overwrite any other server configs.*

The script will install the latest version of the azsdk cli executable from [tools releases](https://github.com/Azure/azure-sdk-tools/releases) and install it to `$HOME/.azure-sdk-mcp/azsdk`.

## Authoring an MCP server

Azure SDK MCP server code is in [azure-sdk-tools/tools/azsdk-cli/Azure.Sdk.Tools.Cli](https://github.com/Azure/azure-sdk-tools/tree/main/tools/azsdk-cli/Azure.Sdk.Tools.Cli).

Azure SDK MCP servers [**MUST** support stdio and **SHOULD** support streamable HTTP using latest OAuth 2.1 Best Current Practices (BCPs)](https://modelcontextprotocol.io/docs/concepts/transports).

When running in copilot the default is stdio mode.

### Developing MCP servers in C#

See the [C# MCP SDK](https://github.com/modelcontextprotocol/csharp-sdk)

TODO: Add the azsdk-cli project to pull in MCP server dependencies from the repo