Smithery

create_pull_request

Create a new pull request in a GitHub repository

Remote AndyManastorm/smithery-reference-servers

Other tools also called create_pull_request? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "base": {
      "type": "string",
      "description": "The name of the branch you want the changes pulled into"
    },
    "body": {
      "type": "string",
      "description": "Pull request body/description"
    },
    "head": {
      "type": "string",
      "description": "The name of the branch where your changes are implemented"
    },
    "repo": {
      "type": "string",
      "description": "Repository name"
    },
    "draft": {
      "type": "boolean",
      "description": "Whether to create the pull request as a draft"
    },
    "owner": {
      "type": "string",
      "description": "Repository owner (username or organization)"
    },
    "title": {
      "type": "string",
      "description": "Pull request title"
    },
    "maintainer_can_modify": {
      "type": "boolean",
      "description": "Whether maintainers can modify the pull request"
    }
  }
}