Tool details
Playground
Input schema
input-schema.json
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Create a new pull request in a repository
| Field | Value |
|---|---|
| Name | github__create_pr |
| Group | Integrations |
{
"type": "object",
"properties": {
"owner": {
"type": "string",
"description": "Repository owner"
},
"repo": {
"type": "string",
"description": "Repository name"
},
"title": {
"type": "string",
"description": "PR title"
},
"body": {
"type": "string",
"description": "PR description (markdown)"
},
"head": {
"type": "string",
"description": "Branch to merge from (e.g. feature-branch or owner:feature-branch)"
},
"base": {
"type": "string",
"description": "Branch to merge into (e.g. main)"
},
"draft": {
"type": "boolean",
"description": "Create as draft PR"
}
},
"required": [
"owner",
"repo",
"title",
"head",
"base"
],
"description": "Input schema for the github__create_pr tool."
}