annator / mcps /GitKraken /tools /git_checkout.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
517 Bytes
{
"name": "git_checkout",
"description": "Switch branches or restore working tree files (git checkout <branch>).",
"inputSchema": {
"type": "object",
"properties": {
"branch": {
"description": "The branch to checkout. This must be a valid branch name without spaces",
"type": "string"
},
"directory": {
"description": "The directory to run git checkout in",
"type": "string"
}
},
"required": [
"directory",
"branch"
]
}
}