Git MCP Server

remote_add

Add a remote

Input Schema

NameRequiredDescriptionDefault
nameYesRemote name
pathNoPath to repository. MUST be an absolute path (e.g., /Users/username/projects/my-repo)
urlYesRemote URL

Input Schema (JSON Schema)

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