AiDD MCP Server

git_create_branch

Creates a new branch. Creates a new branch from the specified base branch or current HEAD. Repository must be within the allowed directory.

Input Schema

NameRequiredDescriptionDefault
base_branchNoStarting point for the new branch (optional)
branch_nameYesName of the new branch
repo_pathYesPath to git repository

Input Schema (JSON Schema)

{ "properties": { "base_branch": { "default": null, "description": "Starting point for the new branch (optional)", "type": "string" }, "branch_name": { "description": "Name of the new branch", "type": "string" }, "repo_path": { "description": "Path to git repository", "type": "string" } }, "required": [ "repo_path", "branch_name" ], "type": "object" }