AiDD MCP Server

git_diff

Shows differences between branches or commits. Returns a unified diff format comparing current state with target. Repository must be within the allowed directory.

Input Schema

NameRequiredDescriptionDefault
repo_pathYesPath to git repository
targetYesTarget branch or commit to compare with

Input Schema (JSON Schema)

{ "properties": { "repo_path": { "description": "Path to git repository", "type": "string" }, "target": { "description": "Target branch or commit to compare with", "type": "string" } }, "required": [ "repo_path", "target" ], "type": "object" }