create_pull_request
Generate a pull request by specifying title, description, source and target branches, and reviewers. Integrates with the azure-devops MCP Server for streamlined code collaboration.
Instructions
Create a new pull request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Description of the pull request | |
reviewers | No | Array of reviewer email addresses | |
sourceBranch | Yes | Source branch name | |
targetBranch | Yes | Target branch name | |
title | Yes | Title of the pull request |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the pull request",
"type": "string"
},
"reviewers": {
"description": "Array of reviewer email addresses",
"items": {
"type": "string"
},
"type": "array"
},
"sourceBranch": {
"description": "Source branch name",
"type": "string"
},
"targetBranch": {
"description": "Target branch name",
"type": "string"
},
"title": {
"description": "Title of the pull request",
"type": "string"
}
},
"required": [
"title",
"description",
"sourceBranch",
"targetBranch"
],
"type": "object"
}