Git MCP Server

clone

Clone a repository

Input Schema

NameRequiredDescriptionDefault
pathNoPath to clone into. MUST be an absolute path (e.g., /Users/username/projects/my-repo)
urlYesURL of the repository to clone

Input Schema (JSON Schema)

{ "properties": { "path": { "description": "Path to clone into. MUST be an absolute path (e.g., /Users/username/projects/my-repo)", "type": "string" }, "url": { "description": "URL of the repository to clone", "type": "string" } }, "required": [ "url" ], "type": "object" }