{ "name": "git_blame", "description": "Show what revision and author last modified each line of a file (git blame ).", "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" ] } }