AiDD MCP Server

git_init

Initialize a new Git repository. Creates a new Git repository in the specified directory. If the directory doesn't exist, it will be created. Directory must be within the allowed directory.

Input Schema

NameRequiredDescriptionDefault
initial_branchNoName of the initial branch (defaults to 'main')main
pathYesPath where to initialize the repository

Input Schema (JSON Schema)

{ "properties": { "initial_branch": { "default": "main", "description": "Name of the initial branch (defaults to 'main')", "type": "string" }, "path": { "description": "Path where to initialize the repository", "type": "string" } }, "required": [ "path" ], "type": "object" }