Git File Forensics MCP

analyze_file_context

Analyze broader context of file changes in a specific commit

Input Schema

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

Input Schema (JSON Schema)

{ "properties": { "commit": { "description": "Commit hash to analyze", "type": "string" }, "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", "commit", "outputPath" ], "type": "object" }