Azure DevOps MCP Server for Cline

create_pull_request

Create a new pull request

Input Schema

NameRequiredDescriptionDefault
descriptionNoPull request description
repositoryIdYesRepository ID
reviewersNoList of reviewer IDs (optional)
sourceRefNameYesSource branch name (e.g. refs/heads/feature)
targetRefNameYesTarget branch name (e.g. refs/heads/main)
titleYesPull request title

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "Pull request description", "type": "string" }, "repositoryId": { "description": "Repository ID", "type": "string" }, "reviewers": { "description": "List of reviewer IDs (optional)", "items": { "type": "string" }, "type": "array" }, "sourceRefName": { "description": "Source branch name (e.g. refs/heads/feature)", "type": "string" }, "targetRefName": { "description": "Target branch name (e.g. refs/heads/main)", "type": "string" }, "title": { "description": "Pull request title", "type": "string" } }, "required": [ "repositoryId", "sourceRefName", "targetRefName", "title" ], "type": "object" }