@azure-devops/mcp 2.9.0-nightly.20260813 โ 2.9.0-nightly.20260815
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 +64 -106
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Azure DevOps MCP Server
|
|
2
2
|
|
|
3
3
|
> [!WARNING]
|
|
4
4
|
> We recently completed a full tool consolidation that includes renaming of existing tools. Please see the [Toolset documentation](docs/TOOLSET.md) for the complete list of new tool names.
|
|
5
5
|
>
|
|
6
6
|
> If this is a breaking change for your agents or skills, you can temporarily pin the version to `@azure-devops/mcp@2.8.1`
|
|
7
7
|
|
|
8
|
-
This project
|
|
8
|
+
This project gives AI agents access to Azure DevOps through the Model Context Protocol (MCP). Use the hosted remote server for the simplest setup, or run the local server when you need a `stdio` connection.
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Table of Contents
|
|
11
11
|
|
|
12
12
|
> [!IMPORTANT]
|
|
13
13
|
> We recommend using the [Remote MCP Server](https://learn.microsoft.com/en-us/azure/devops/mcp-server/remote-mcp-server) instead of this local server. It requires no installation and gets new features first.
|
|
14
14
|
>
|
|
15
|
-
> [Learn more](
|
|
16
|
-
|
|
17
|
-
1. [
|
|
18
|
-
2. [
|
|
19
|
-
3. [
|
|
20
|
-
4. [
|
|
21
|
-
5. [
|
|
22
|
-
6. [
|
|
23
|
-
7. [
|
|
24
|
-
8. [
|
|
25
|
-
9. [
|
|
26
|
-
10. [
|
|
27
|
-
11. [
|
|
28
|
-
|
|
29
|
-
##
|
|
15
|
+
> [Learn more](#remote-mcp-server-recommended)
|
|
16
|
+
|
|
17
|
+
1. [Overview](#overview)
|
|
18
|
+
2. [Design](#design)
|
|
19
|
+
3. [Remote MCP Server (Recommended)](#remote-mcp-server-recommended)
|
|
20
|
+
4. [Supported Tools](#supported-tools)
|
|
21
|
+
5. [Local MCP Server Installation (Optional)](#local-mcp-server-installation-optional)
|
|
22
|
+
6. [Using Domains (Local Server)](#using-domains-local-server)
|
|
23
|
+
7. [Project and Team Defaults (Local Server)](#project-and-team-defaults-local-server)
|
|
24
|
+
8. [Troubleshooting](#troubleshooting)
|
|
25
|
+
9. [Examples and Best Practices](#examples-and-best-practices)
|
|
26
|
+
10. [Frequently Asked Questions](#frequently-asked-questions)
|
|
27
|
+
11. [Contributing](#contributing)
|
|
28
|
+
|
|
29
|
+
## Overview
|
|
30
30
|
|
|
31
31
|
The Azure DevOps MCP Server brings Azure DevOps context to your agents. Try prompts like:
|
|
32
32
|
|
|
@@ -43,23 +43,21 @@ The Azure DevOps MCP Server brings Azure DevOps context to your agents. Try prom
|
|
|
43
43
|
- "Update the wiki page '/Getting Started' with new onboarding instructions"
|
|
44
44
|
- "Get the content of the wiki page '/API/Authentication' from the Documentation wiki"
|
|
45
45
|
|
|
46
|
-
##
|
|
46
|
+
## Design
|
|
47
47
|
|
|
48
|
-
|
|
48
|
+
Each tool handles a focused Azure DevOps task. The server provides a thin layer over the REST APIs, while the AI agent handles higher-level reasoning.
|
|
49
49
|
|
|
50
|
-
##
|
|
50
|
+
## Remote MCP Server (Recommended)
|
|
51
51
|
|
|
52
52
|
For complete instructions, see the [Remote MCP Server onboarding documentation](https://learn.microsoft.com/en-us/azure/devops/mcp-server/remote-mcp-server?view=azure-devops).
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
We encourage all users of the local MCP Server to begin migrating to the Remote MCP Server.
|
|
54
|
+
The remote server will eventually replace the local server. The local server remains supported, but new development will focus on the remote server. Existing local server users should begin planning their migration.
|
|
57
55
|
|
|
58
56
|
If you encounter issues with tools, need support, or have a feature request, you can report an issue using the [Remote MCP Server issue template](https://github.com/microsoft/azure-devops-mcp/issues/new?template=remote-mcp-server-issue.md). During the preview period, we will track Remote MCP Server issues through this repository.
|
|
59
57
|
|
|
60
|
-
### Quick
|
|
58
|
+
### Quick Start
|
|
61
59
|
|
|
62
|
-
|
|
60
|
+
Create `.vscode/mcp.json` in your project and add this configuration. Replace `{organization}` with your Azure DevOps organization name.
|
|
63
61
|
|
|
64
62
|
```json
|
|
65
63
|
{
|
|
@@ -73,42 +71,35 @@ Use this configuration to connect directly to the Azure DevOps-hosted endpoint u
|
|
|
73
71
|
}
|
|
74
72
|
```
|
|
75
73
|
|
|
76
|
-
See [documentation](https://learn.microsoft.com/en-us/azure/devops/mcp-server/remote-mcp-server?view=azure-devops#mcpjson-configuration) for
|
|
74
|
+
See the [remote server configuration documentation](https://learn.microsoft.com/en-us/azure/devops/mcp-server/remote-mcp-server?view=azure-devops#mcpjson-configuration) for more options.
|
|
77
75
|
|
|
78
76
|
After saving `.vscode/mcp.json`, start the server from the MCP view in VS Code, then run a prompt like `List ADO projects`.
|
|
79
77
|
|
|
80
|
-
##
|
|
78
|
+
## Supported Tools
|
|
81
79
|
|
|
82
80
|
See the [Available Tools](https://learn.microsoft.com/en-us/azure/devops/mcp-server/remote-mcp-server?view=azure-devops#available-tools) documentation for the complete list of available remote tools.
|
|
83
81
|
|
|
84
|
-
For
|
|
82
|
+
For the complete list of local tools, see [TOOLSET.md](./docs/TOOLSET.md).
|
|
85
83
|
|
|
86
|
-
##
|
|
84
|
+
## Local MCP Server Installation (Optional)
|
|
87
85
|
|
|
88
86
|
> [!IMPORTANT]
|
|
89
87
|
> Start with the Remote MCP Server first. Use the local MCP Server only if your scenario specifically requires a local `stdio` setup.
|
|
90
88
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
For the best experience, use Visual Studio Code and GitHub Copilot. See the [getting started documentation](./docs/GETTINGSTARTED.md) to use our MCP Server with other tools such as Visual Studio 2022, Codex, Claude Code, Cursor, Opencode, and Kilocode.
|
|
89
|
+
These steps use Visual Studio Code and GitHub Copilot. For other supported clients, including Visual Studio 2022, Codex, Claude Code, Cursor, OpenCode, and Kilo Code, see the [getting started guide](./docs/GETTINGSTARTED.md).
|
|
94
90
|
|
|
95
91
|
### Prerequisites
|
|
96
92
|
|
|
97
|
-
1. Install [VS Code](https://code.visualstudio.com/download) or [VS Code Insiders](https://code.visualstudio.com/insiders)
|
|
98
|
-
2. Install [Node.js](https://nodejs.org/en/download)
|
|
99
|
-
3. Open
|
|
93
|
+
1. Install [VS Code](https://code.visualstudio.com/download) or [VS Code Insiders](https://code.visualstudio.com/insiders).
|
|
94
|
+
2. Install [Node.js 20 or later](https://nodejs.org/en/download).
|
|
95
|
+
3. Open your project in VS Code.
|
|
100
96
|
|
|
101
97
|
### Installation
|
|
102
98
|
|
|
103
|
-
####
|
|
104
|
-
|
|
105
|
-
This installation method is the easiest for all users of Visual Studio Code.
|
|
106
|
-
|
|
107
|
-
๐ฅ [Watch this quick start video to get up and running in under two minutes!](https://youtu.be/EUmFM6qXoYk)
|
|
108
|
-
|
|
109
|
-
##### Steps
|
|
99
|
+
#### Install from npm
|
|
110
100
|
|
|
111
|
-
|
|
101
|
+
1. Create `.vscode/mcp.json` in your project.
|
|
102
|
+
2. Add this configuration:
|
|
112
103
|
|
|
113
104
|
```json
|
|
114
105
|
{
|
|
@@ -129,49 +120,24 @@ In your project, add a `.vscode\mcp.json` file with the following content:
|
|
|
129
120
|
}
|
|
130
121
|
```
|
|
131
122
|
|
|
132
|
-
|
|
123
|
+
3. Save the file, then start the `ado` server from the MCP view in VS Code.
|
|
124
|
+
4. Open GitHub Copilot Chat and switch to [Agent mode](https://code.visualstudio.com/blogs/2025/02/24/introducing-copilot-agent-mode).
|
|
125
|
+
5. Select the Azure DevOps tools, then try a prompt such as `List ADO projects`.
|
|
126
|
+
6. When prompted, sign in with a Microsoft account that has access to the selected Azure DevOps organization.
|
|
133
127
|
|
|
134
|
-
|
|
135
|
-
{
|
|
136
|
-
"inputs": [
|
|
137
|
-
{
|
|
138
|
-
"id": "ado_org",
|
|
139
|
-
"type": "promptString",
|
|
140
|
-
"description": "Azure DevOps organization name (e.g. 'contoso')"
|
|
141
|
-
}
|
|
142
|
-
],
|
|
143
|
-
"servers": {
|
|
144
|
-
"ado": {
|
|
145
|
-
"type": "stdio",
|
|
146
|
-
"command": "npx",
|
|
147
|
-
"args": ["-y", "@azure-devops/mcp@next", "${input:ado_org}"]
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
```
|
|
152
|
-
|
|
153
|
-
Save the file, then click 'Start'.
|
|
154
|
-
|
|
155
|
-

|
|
156
|
-
|
|
157
|
-
In chat, switch to [Agent Mode](https://code.visualstudio.com/blogs/2025/02/24/introducing-copilot-agent-mode).
|
|
128
|
+
To use nightly builds, replace `@azure-devops/mcp` with `@azure-devops/mcp@next` in the configuration.
|
|
158
129
|
|
|
159
|
-
|
|
130
|
+
For better tool selection, add `.github/copilot-instructions.md` to your project with this instruction:
|
|
160
131
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
> ๐ฅ We strongly recommend creating a `.github\copilot-instructions.md` in your project. This will enhance your experience using the Azure DevOps MCP Server with GitHub Copilot Chat.
|
|
166
|
-
> To start, just include "`This project uses Azure DevOps. Always check to see if the Azure DevOps MCP server has a tool relevant to the user's request`" in your copilot instructions file.
|
|
167
|
-
|
|
168
|
-
See the [getting started documentation](./docs/GETTINGSTARTED.md) to use our MCP Server with other tools such as Visual Studio 2022, Codex, Claude Code, and Cursor.
|
|
132
|
+
```text
|
|
133
|
+
This project uses Azure DevOps. Always check whether the Azure DevOps MCP server has a tool relevant to the user's request.
|
|
134
|
+
```
|
|
169
135
|
|
|
170
|
-
##
|
|
136
|
+
## Using Domains (Local Server)
|
|
171
137
|
|
|
172
|
-
|
|
138
|
+
The local server includes many tools. Domains let you load only the tool groups you need, which keeps the tool list manageable and helps clients with tool limits. Available domains are `core`, `work`, `work-items`, `search`, `test-plans`, `repositories`, `wiki`, `pipelines`, and `advanced-security`.
|
|
173
139
|
|
|
174
|
-
|
|
140
|
+
Add `-d` followed by the domains to the server arguments. For example, this configuration loads only work item-related tools:
|
|
175
141
|
|
|
176
142
|
```json
|
|
177
143
|
{
|
|
@@ -192,15 +158,13 @@ For example, use `"-d", "core", "work", "work-items"` to load only Work Item rel
|
|
|
192
158
|
}
|
|
193
159
|
```
|
|
194
160
|
|
|
195
|
-
|
|
161
|
+
Always include `core` so the agent can retrieve project information.
|
|
196
162
|
|
|
197
|
-
|
|
163
|
+
> If you omit `-d`, the server loads all domains.
|
|
198
164
|
|
|
199
|
-
|
|
165
|
+
## Project and Team Defaults (Local Server)
|
|
200
166
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
You can also configure default Azure DevOps project and team values from `.vscode/mcp.json` using `project` and `team`, so tools can skip selection prompts.
|
|
167
|
+
Set default Azure DevOps project and team values in `.vscode/mcp.json` so tools can skip selection prompts.
|
|
204
168
|
|
|
205
169
|
### Example `.vscode/mcp.json`
|
|
206
170
|
|
|
@@ -220,43 +184,37 @@ You can also configure default Azure DevOps project and team values from `.vscod
|
|
|
220
184
|
}
|
|
221
185
|
```
|
|
222
186
|
|
|
223
|
-
##
|
|
187
|
+
## Troubleshooting
|
|
224
188
|
|
|
225
189
|
See the [Troubleshooting guide](./docs/TROUBLESHOOTING.md) for help with common issues and logging.
|
|
226
190
|
|
|
227
|
-
##
|
|
228
|
-
|
|
229
|
-
Explore example prompts in our [Examples documentation](./docs/EXAMPLES.md).
|
|
191
|
+
## Examples
|
|
230
192
|
|
|
231
|
-
|
|
193
|
+
See the [examples](./docs/EXAMPLES.md) for sample prompts.
|
|
232
194
|
|
|
233
|
-
##
|
|
195
|
+
## Frequently Asked Questions
|
|
234
196
|
|
|
235
197
|
For answers to common questions about the Azure DevOps MCP Server, see the [Frequently Asked Questions](./docs/FAQ.md).
|
|
236
198
|
|
|
237
|
-
##
|
|
199
|
+
## Contributing
|
|
238
200
|
|
|
239
|
-
We welcome contributions
|
|
201
|
+
We welcome contributions. During preview, file issues for bugs, enhancements, or documentation improvements.
|
|
240
202
|
|
|
241
203
|
See our [Contributions Guide](./CONTRIBUTING.md) for:
|
|
242
204
|
|
|
243
|
-
-
|
|
244
|
-
-
|
|
245
|
-
-
|
|
246
|
-
-
|
|
205
|
+
- Development setup
|
|
206
|
+
- Adding new tools
|
|
207
|
+
- Code style and testing
|
|
208
|
+
- Pull request process
|
|
247
209
|
|
|
248
|
-
|
|
210
|
+
Read the [Contributions Guide](./CONTRIBUTING.md) before creating a pull request.
|
|
249
211
|
|
|
250
|
-
##
|
|
212
|
+
## Code of Conduct
|
|
251
213
|
|
|
252
214
|
This project follows the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
|
253
215
|
For questions, see the [FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [open@microsoft.com](mailto:open@microsoft.com).
|
|
254
216
|
|
|
255
|
-
##
|
|
256
|
-
|
|
257
|
-
[](https://star-history.com/#microsoft/azure-devops-mcp)
|
|
258
|
-
|
|
259
|
-
## ๐ Hall of Fame
|
|
217
|
+
## Hall of Fame
|
|
260
218
|
|
|
261
219
|
Thanks to all contributors who make this project awesome! โค๏ธ
|
|
262
220
|
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = "2.9.0-nightly.
|
|
1
|
+
export const packageVersion = "2.9.0-nightly.20260815";
|