commit
Create a Git commit with a specified message and repository path using the Git MCP Server, enabling AI-assisted version control and repository management.
Instructions
Create a commit
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Commit message | |
path | No | Path to repository. MUST be an absolute path (e.g., /Users/username/projects/my-repo) |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "Commit message",
"type": "string"
},
"path": {
"description": "Path to repository. MUST be an absolute path (e.g., /Users/username/projects/my-repo)",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}