AiDD MCP Server

git_add

Adds file contents to the staging area. Stages specified files for the next commit. Repository must be within the allowed directory.

Input Schema

NameRequiredDescriptionDefault
filesYesList of file paths to stage
repo_pathYesPath to git repository

Input Schema (JSON Schema)

{ "properties": { "files": { "description": "List of file paths to stage", "items": { "type": "string" }, "type": "array" }, "repo_path": { "description": "Path to git repository", "type": "string" } }, "required": [ "repo_path", "files" ], "type": "object" }