annator / mcps /grok_com_github /tools /create_branch.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
640 Bytes
{
"name": "create_branch",
"description": "Create a new branch in a GitHub repository",
"inputSchema": {
"type": "object",
"properties": {
"branch": {
"type": "string",
"description": "Name for new branch"
},
"from_branch": {
"type": "string",
"description": "Source branch (defaults to repo default)"
},
"owner": {
"type": "string",
"description": "Repository owner"
},
"repo": {
"type": "string",
"description": "Repository name"
}
},
"required": [
"owner",
"repo",
"branch"
]
}
}