AiDD MCP Server

git_show

Shows the contents of a commit. Returns detailed information about a specific commit including the changes it introduced. Repository must be within the allowed directory.

Input Schema

NameRequiredDescriptionDefault
repo_pathYesPath to git repository
revisionYesThe revision (commit hash, branch name, tag) to show

Input Schema (JSON Schema)

{ "properties": { "repo_path": { "description": "Path to git repository", "type": "string" }, "revision": { "description": "The revision (commit hash, branch name, tag) to show", "type": "string" } }, "required": [ "repo_path", "revision" ], "type": "object" }