azure-devops-mcp

by RyanCardin15
Verified

createPullRequest

Create a new pull request

Input Schema

NameRequiredDescriptionDefault
descriptionNoDescription of the pull request
repositoryIdYesID of the repository
reviewersNoList of reviewers
sourceRefNameYesSource branch
targetRefNameYesTarget branch
titleYesTitle of the pull request

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "description": "Description of the pull request", "type": "string" }, "repositoryId": { "description": "ID of the repository", "type": "string" }, "reviewers": { "description": "List of reviewers", "items": { "type": "string" }, "type": "array" }, "sourceRefName": { "description": "Source branch", "type": "string" }, "targetRefName": { "description": "Target branch", "type": "string" }, "title": { "description": "Title of the pull request", "type": "string" } }, "required": [ "repositoryId", "sourceRefName", "targetRefName", "title" ], "type": "object" }

You must be authenticated.

Other Tools