@azure-devops/mcp 2.9.0-nightly.20260813 โ†’ 2.9.0-nightly.20260814

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
@@ -1,32 +1,32 @@
1
- # โญ Azure DevOps MCP Server
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 provides Azure DevOps MCP tooling for AI agents, with a **remote-first** onboarding experience and a local server option when you need it.
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
- ## ๐Ÿ“„ Table of Contents
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](#-remote-mcp-server-recommended)
16
-
17
- 1. [๐Ÿ“บ Overview](#-overview)
18
- 2. [๐Ÿ† Expectations](#-expectations)
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)](#-using-domains-local)
23
- 7. [๐Ÿฅ Project and Team Defaults (local)](#-project-and-team-defaults-local)
24
- 8. [๐Ÿ“ Troubleshooting](#-troubleshooting)
25
- 9. [๐ŸŽฉ Examples & Best Practices](#-examples--best-practices)
26
- 10. [๐Ÿ™‹โ€โ™€๏ธ Frequently Asked Questions](#๏ธ-frequently-asked-questions)
27
- 11. [๐Ÿ“Œ Contributing](#-contributing)
28
-
29
- ## ๐Ÿ“บ Overview
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
- ## ๐Ÿ† Expectations
46
+ ## Design
47
47
 
48
- The Azure DevOps MCP Server is built around tools that are concise, simple, focused, and easy to use, with each one designed for a specific scenario. We intentionally avoid creating complex tools that try to do too much. The goal is to provide a thin abstraction layer over the REST APIs that makes data access straightforward while allowing the language model to handle the more complex reasoning.
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
- ## ๐Ÿš€ Remote MCP Server (Recommended)
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
- Over time, the Remote MCP Server will replace this local MCP Server. We will continue to support the local server for now, but future investments will primarily focus on the remote experience.
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 start with `.vscode/mcp.json`
58
+ ### Quick Start
61
59
 
62
- Use this configuration to connect directly to the Azure DevOps-hosted endpoint using streamable HTTP transport:
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 additional configuration options.
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
- ## โš™๏ธ Supported Tools
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 a comprehensive list of local tools, see [TOOLSET.md](./docs/TOOLSET.md).
82
+ For the complete list of local tools, see [TOOLSET.md](./docs/TOOLSET.md).
85
83
 
86
- ## ๐Ÿ”Œ Local MCP Server Installation (Optional)
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
- Use this section if you specifically need the local `stdio` server experience. For most users, start with the [Remote MCP Server](#-remote-mcp-server-recommended) section above.
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) 20+
99
- 3. Open VS Code in an empty folder
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
- #### ๐Ÿงจ Install from Public Feed
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
- In your project, add a `.vscode\mcp.json` file with the following content:
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
- ๐Ÿ”ฅ To stay up to date with the latest features, you can use our nightly builds. Simply update your `mcp.json` configuration to use `@azure-devops/mcp@next`. Here is an updated example:
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
- ```json
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
- ![start mcp server](./docs/media/start-mcp-server.gif)
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
- Click "Select Tools" and choose the available tools.
130
+ For better tool selection, add `.github/copilot-instructions.md` to your project with this instruction:
160
131
 
161
- ![configure mcp server tools](./docs/media/configure-mcp-server-tools.gif)
162
-
163
- Open GitHub Copilot Chat and try a prompt like `List ADO projects`. The first time an ADO tool is executed browser will open prompting to login with your Microsoft account. Please ensure you are using credentials matching selected Azure DevOps organization.
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
- ## ๐ŸŒ Using Domains (local)
136
+ ## Using Domains (Local Server)
171
137
 
172
- Azure DevOps exposes a large surface area. As a result, our Azure DevOps MCP Server includes many tools. To keep the toolset manageable, avoid confusing the model, and respect client limits on loaded tools, use Domains to load only the areas you need. Domains are named groups of related tools (for example: core, work, work-items, repositories, wiki). Add the `-d` argument and the domain names to the server args in your `mcp.json` to list the domains to enable.
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
- For example, use `"-d", "core", "work", "work-items"` to load only Work Item related tools (see the example below).
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
- Domains that are available are: `core`, `work`, `work-items`, `search`, `test-plans`, `repositories`, `wiki`, `pipelines`, `advanced-security`
161
+ Always include `core` so the agent can retrieve project information.
196
162
 
197
- We recommend that you always enable `core` tools so that you can fetch project level information.
163
+ > If you omit `-d`, the server loads all domains.
198
164
 
199
- > By default all domains are loaded
165
+ ## Project and Team Defaults (Local Server)
200
166
 
201
- ## ๐Ÿฅ Project and Team Defaults (local)
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
- ## ๐Ÿ“ Troubleshooting
187
+ ## Troubleshooting
224
188
 
225
189
  See the [Troubleshooting guide](./docs/TROUBLESHOOTING.md) for help with common issues and logging.
226
190
 
227
- ## ๐ŸŽฉ Examples & Best Practices
228
-
229
- Explore example prompts in our [Examples documentation](./docs/EXAMPLES.md).
191
+ ## Examples
230
192
 
231
- For best practices and tips to enhance your experience with the MCP Server, refer to the [How-To guide](./docs/HOWTO.md).
193
+ See the [examples](./docs/EXAMPLES.md) for sample prompts.
232
194
 
233
- ## ๐Ÿ™‹โ€โ™€๏ธ Frequently Asked Questions
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
- ## ๐Ÿ“Œ Contributing
199
+ ## Contributing
238
200
 
239
- We welcome contributions! During preview, please file issues for bugs, enhancements, or documentation improvements.
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
- - ๐Ÿ› ๏ธ Development setup
244
- - โœจ Adding new tools
245
- - ๐Ÿ“ Code style & testing
246
- - ๐Ÿ”„ Pull request process
205
+ - Development setup
206
+ - Adding new tools
207
+ - Code style and testing
208
+ - Pull request process
247
209
 
248
- > โš ๏ธ Please read the [Contributions Guide](./CONTRIBUTING.md) before creating a pull request.
210
+ Read the [Contributions Guide](./CONTRIBUTING.md) before creating a pull request.
249
211
 
250
- ## ๐Ÿค Code of Conduct
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
- ## ๐Ÿ“ˆ Project Stats
256
-
257
- [![Star History Chart](https://api.star-history.com/svg?repos=microsoft/azure-devops-mcp&type=Date)](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.20260813";
1
+ export const packageVersion = "2.9.0-nightly.20260814";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-devops/mcp",
3
- "version": "2.9.0-nightly.20260813",
3
+ "version": "2.9.0-nightly.20260814",
4
4
  "mcpName": "microsoft.com/azure-devops",
5
5
  "description": "MCP server for interacting with Azure DevOps",
6
6
  "license": "MIT",