Git MCP

create_git_tag

Create a new git tag in the repository

Args: repo_name: Name of the git repository tag_name: Name of the tag to create message: Optional message for annotated tag Returns: Dictionary containing status and tag information

Input Schema

NameRequiredDescriptionDefault
messageNo
repo_nameYes
tag_nameYes

Input Schema (JSON Schema)

{ "properties": { "message": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Message" }, "repo_name": { "title": "Repo Name", "type": "string" }, "tag_name": { "title": "Tag Name", "type": "string" } }, "required": [ "repo_name", "tag_name" ], "title": "create_git_tagArguments", "type": "object" }