Git File Forensics MCP

track_file_versions

Track complete version history of a specific file, including renames and moves

Input Schema

NameRequiredDescriptionDefault
fileYesFile to analyze
outputPathYesPath to write analysis output
repoPathYesPath to git repository

Input Schema (JSON Schema)

{ "properties": { "file": { "description": "File to analyze", "type": "string" }, "outputPath": { "description": "Path to write analysis output", "type": "string" }, "repoPath": { "description": "Path to git repository", "type": "string" } }, "required": [ "repoPath", "file", "outputPath" ], "type": "object" }