annator / mcps /GitKraken /tools /git_branch.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
640 Bytes
{
"name": "git_branch",
"description": "List or create branches (git branch).",
"inputSchema": {
"type": "object",
"properties": {
"action": {
"description": "Git branch action to be executed",
"enum": [
"create",
"list"
],
"type": "string"
},
"branch_name": {
"description": "(Optional) Name of the branch to create or delete",
"type": "string"
},
"directory": {
"description": "The directory to run git branch in",
"type": "string"
}
},
"required": [
"directory",
"action"
]
}
}