annator / mcps /GitKraken /tools /git_blame.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
466 Bytes
{
"name": "git_blame",
"description": "Show what revision and author last modified each line of a file (git blame <file>).",
"inputSchema": {
"type": "object",
"properties": {
"directory": {
"description": "The directory to run git blame in",
"type": "string"
},
"file": {
"description": "The file to blame",
"type": "string"
}
},
"required": [
"directory",
"file"
]
}
}