list_pull_requests
Filter and retrieve pull requests by status (active, completed, abandoned) in a repository using this tool on the azure-devops MCP Server.
Instructions
List pull requests in a repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
status | No | Filter by PR status |
Input Schema (JSON Schema)
{
"properties": {
"status": {
"description": "Filter by PR status",
"enum": [
"active",
"completed",
"abandoned"
],
"type": "string"
}
},
"required": [],
"type": "object"
}