git_commit
Use this tool to record changes to a Git repository by specifying the repository path and a commit message. It integrates with the MCP Git Server to manage version control tasks efficiently.
Instructions
Records changes to the repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | ||
repo_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"title": "Message",
"type": "string"
},
"repo_path": {
"title": "Repo Path",
"type": "string"
}
},
"required": [
"repo_path",
"message"
],
"title": "GitCommit",
"type": "object"
}