AiDD MCP Server

git_commit

Records changes to the repository. Commits all staged changes with the provided message. Repository must be within the allowed directory.

Input Schema

NameRequiredDescriptionDefault
messageYesCommit message
repo_pathYesPath to git repository

Input Schema (JSON Schema)

{ "properties": { "message": { "description": "Commit message", "type": "string" }, "repo_path": { "description": "Path to git repository", "type": "string" } }, "required": [ "repo_path", "message" ], "type": "object" }