tag_delete
Remove a specific Git tag by specifying the repository path and tag name. Streamline tag management for repositories with this Git MCP Server tool.
Instructions
Delete a tag
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Tag 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": "Tag 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"
}