You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -223,6 +225,40 @@ Delete a tag from a pipeline run in your project using the [az pipelines runs ta
223
225
```azurecli
224
226
az pipelines runs tag delete --run-id 123 --tag YAML
225
227
```
228
+
## Manage runs with the Azure DevOps MCP Server
229
+
230
+
You can manage pipeline runs in Copilot with the Azure DevOps MCP server. To get started, see [Enable AI assistance with Azure DevOps MCP Server](../../mcp-server/mcp-server-overview.md)
231
+
232
+
### MCP: List pipeline runs
233
+
234
+
List the pipeline runs for a particular pipeline.
235
+
236
+
```copilot-prompt
237
+
Show the three most recent runs for the fabrikamfiber pipeline.
238
+
```
239
+
240
+
This prompt lists the last three pipeline runs with a link to view each run.
241
+
242
+
### MCP: Show pipeline run details
243
+
244
+
Fetch the status of a specific build.
245
+
246
+
```copilot-prompt
247
+
Show the status and details for build 12345678.9.
248
+
```
249
+
250
+
This prompt returns returns the status, result, start/finish time, and summary for a build.
251
+
252
+
### MCP: Start a new pipeline run
253
+
254
+
Begin a new run of a pipeline.
255
+
256
+
```copilot-prompt
257
+
Start the Tailspin pipeline and provide a direct link to the run, including the project name in the URL.
258
+
```
259
+
260
+
This prompt starts your pipeline and and provides a link to the pipeline run.
0 commit comments