AiDD MCP Server

git_log

Shows the commit logs. Returns information about recent commits including hash, author, date, and message. Repository must be within the allowed directory.

Input Schema

NameRequiredDescriptionDefault
max_countNoMaximum number of commits to show
repo_pathYesPath to git repository

Input Schema (JSON Schema)

{ "properties": { "max_count": { "default": 10, "description": "Maximum number of commits to show", "type": "integer" }, "repo_path": { "description": "Path to git repository", "type": "string" } }, "required": [ "repo_path" ], "type": "object" }