git_status
Check the status of a Git repository by providing its path. This tool on the GIT MCP Server enables AI assistants to retrieve and report changes like untracked, modified, or staged files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repository_path | Yes | Path to the git repository |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"repository_path": {
"description": "Path to the git repository",
"type": "string"
}
},
"required": [
"repository_path"
],
"type": "object"
}