Git MCP Server

tag_create

Create a tag

Input Schema

NameRequiredDescriptionDefault
annotatedNoCreate an annotated tag
forceNoForce create tag even if it exists
messageNoTag message
nameYesTag name
pathNoPath to repository. MUST be an absolute path (e.g., /Users/username/projects/my-repo)
signNoCreate a signed tag

Input Schema (JSON Schema)

{ "properties": { "annotated": { "default": true, "description": "Create an annotated tag", "type": "boolean" }, "force": { "default": false, "description": "Force create tag even if it exists", "type": "boolean" }, "message": { "description": "Tag message", "type": "string" }, "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" }, "sign": { "default": false, "description": "Create a signed tag", "type": "boolean" } }, "required": [ "name" ], "type": "object" }