Git MCP Server

pull

Pull changes from remote

Input Schema

NameRequiredDescriptionDefault
branchYesBranch name
pathNoPath to repository. MUST be an absolute path (e.g., /Users/username/projects/my-repo)
remoteNoRemote nameorigin

Input Schema (JSON Schema)

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