remote_remove
Remove a specified remote from a Git repository by providing the repository path and remote name. Supports enhanced Git operations through the Git MCP Server.
Instructions
Remove a remote
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Remote name | |
path | No | Path to repository. MUST be an absolute path (e.g., /Users/username/projects/my-repo) |
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"
}
},
"required": [
"name"
],
"type": "object"
}