Skip to content

Commit 1ce35e4

Browse files
authored
docs: update README with nightly build instructions for mcp@next (#438)
Update readme to show how to use nightly builds ## GitHub issue number N/A ## **Associated Risks** None ## ✅ **PR Checklist** - [x] **I have read the [contribution guidelines](https://github.com/microsoft/azure-devops-mcp/blob/main/CONTRIBUTING.md)** - [x] **I have read the [code of conduct guidelines](https://github.com/microsoft/azure-devops-mcp/blob/main/CODE_OF_CONDUCT.md)** - [x] Title of the pull request is clear and informative. - [x] 👌 Code hygiene - [x] 🔭 Telemetry added, updated, or N/A - [x] 📄 Documentation added, updated, or N/A - [x] 🛡️ Automated tests added, or N/A ## 🧪 **How did you test it?** manual review
1 parent 71a90fb commit 1ce35e4

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,27 @@ In your project, add a `.vscode\mcp.json` file with the following content:
214214
}
215215
```
216216

217+
🔥 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:
218+
219+
```json
220+
{
221+
"inputs": [
222+
{
223+
"id": "ado_org",
224+
"type": "promptString",
225+
"description": "Azure DevOps organization name (e.g. 'contoso')"
226+
}
227+
],
228+
"servers": {
229+
"ado": {
230+
"type": "stdio",
231+
"command": "npx",
232+
"args": ["-y", "@azure-devops/mcp@next", "${input:ado_org}"]
233+
}
234+
}
235+
}
236+
```
237+
217238
Save the file, then click 'Start'.
218239

219240
![start mcp server](./docs/media/start-mcp-server.gif)

0 commit comments

Comments
 (0)