create_git_tag
Create and manage Git tags in a repository, specifying a tag name and optional message, to track specific points in history using the Git MCP server.
Instructions
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
Name | Required | Description | Default |
---|---|---|---|
message | No | ||
repo_name | Yes | ||
tag_name | Yes |
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"
}