git_commit
Automate git commits by specifying a repository path and commit message, with an option to add all files. Integrates with the GIT MCP Server for managing repositories via natural language commands.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
add_all | No | Add all files before committing | |
message | Yes | Commit message | |
repository_path | Yes | Path to the git repository |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"add_all": {
"description": "Add all files before committing",
"type": "boolean"
},
"message": {
"description": "Commit message",
"type": "string"
},
"repository_path": {
"description": "Path to the git repository",
"type": "string"
}
},
"required": [
"repository_path",
"message"
],
"type": "object"
}