MCP Server Git
Provides tools for executing git push, status, diff, add, log, pull, and managing pending changes and push history.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Server Gitshow my pending changes"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server Git
A Model Context Protocol (MCP) server for executing git push operations with flexible branch mapping.
Features
Execute
git pushcommands with flexible branch mapping and auto add/commitComprehensive Git operations: status, diff, add, log, push
Push history tracking and duplicate prevention
Pending changes review system with forced validation
Operation logging for debugging and monitoring
Support for multiple languages (English, Chinese, Traditional Chinese)
Environment variable configuration for flexibility
Proxy support (HTTP, HTTPS, SOCKS5) for corporate networks
Installation
npm install -g @liangshanli/mcp-server-gitEnvironment Variables
The server requires the following environment variables:
Required
PROJECT_PATH: Absolute path to the git repositoryLOCAL_BRANCH: Local branch name to push fromREMOTE_BRANCH: Remote branch name to push to
Optional
REMOTE_NAME: Remote name (default: "origin")PULL_SOURCE_BRANCH: Source branch forgit_pull(default: same asREMOTE_BRANCH)GIT_PUSH_FLAGS: Additional git push flags (default: "--progress")TOOL_PREFIX: Prefix for MCP tool names (default: "")REPO_NAME: Repository identifier for logging and identificationLANGUAGE: Language for messages ("en", "zh", "zh-CN", "zh-TW") (default: "en")MCP_LOG_DIR: Directory for log files (default: "./.setting" or "./.setting.{REPO_NAME}")MCP_LOG_FILE: Log filename (default: "mcp-git.log")MCP_PUSH_HISTORY_FILE: Push history filename (default: "push-history.json")MCP_CHANGES_FILE: Pending changes filename (default: "pending-changes.json")HTTP_PROXY: HTTP proxy URL (e.g., "http://proxy.company.com:8080")HTTPS_PROXY: HTTPS proxy URL (e.g., "http://proxy.company.com:8080")SOCKS_PROXY: SOCKS5 proxy URL (e.g., "socks5://proxy.company.com:1080"). Note: Git may require additional configuration for SOCKS5 proxy support.NO_PROXY: Comma-separated list of hosts that should not use proxyALL_PROXY: Universal proxy URL for all protocols
Usage
1. Set Environment Variables
export PROJECT_PATH="/path/to/your/git/repository"
export LOCAL_BRANCH="main"
export REMOTE_BRANCH="main"
export REMOTE_NAME="origin" # optional
export GIT_PUSH_FLAGS="--progress --verbose" # optional
export TOOL_PREFIX="myproject" # optional
export REPO_NAME="my-project" # optional
# Proxy settings (optional)
export HTTP_PROXY="http://proxy.company.com:8080"
export HTTPS_PROXY="http://proxy.company.com:8080"
export SOCKS_PROXY="socks5://proxy.company.com:1080"
export NO_PROXY="localhost,127.0.0.1,.local"2. Start the Server
Using npm script
npm startUsing the CLI
mcp-server-gitUsing start-server.js (with validation)
npm run start-managedEditor Integration
Multiple Project Instances Support
You can configure multiple instances of the Git MCP server in your editor to manage different repositories simultaneously. Use REPO_NAME and TOOL_PREFIX to isolate the tools and logs for each project.
Cursor Editor Configuration
Create or update .cursor/mcp.json in your project root:
{
"mcpServers": {
"git-web-app": {
"command": "npx",
"args": ["@liangshanli/mcp-server-git"],
"env": {
"PROJECT_PATH": "D:/projects/web-app",
"LOCAL_BRANCH": "main",
"REMOTE_BRANCH": "main",
"REPO_NAME": "web-app",
"TOOL_PREFIX": "web"
}
},
"git-api-service": {
"command": "npx",
"args": ["@liangshanli/mcp-server-git"],
"env": {
"PROJECT_PATH": "D:/projects/api-service",
"LOCAL_BRANCH": "develop",
"REMOTE_BRANCH": "develop",
"REPO_NAME": "api-service",
"TOOL_PREFIX": "api"
}
}
}
}Benefits of Multiple Instances:
Tool Isolation: Each instance has its own prefixed tools (e.g.,
web_git_push,api_git_push).Log Isolation: Logs are stored in separate directories (e.g.,
./.setting.web-app/,./.setting.api-service/).Independent Config: Different branches and paths for each repository.
💡 Best Practices and Usage Suggestions
To fully leverage the power of MCP Git Server, it is recommended to follow these "strong constraint" instructions when collaborating with AI:
Atomic Recording (
save_changes):Instruction Suggestion: "Please call the
save_changestool immediately after completing each independent small feature or bug fix. You need to clearly list the modified files and briefly describe your modification logic in one or two sentences. Strictly forbid accumulating a large number of changes without recording them."Value: This ensures that AI's memory fragments are solidified in real-time, preventing the loss of initial intent in subsequent complex refactors.
Modular Pushing (
git_push):Instruction Suggestion: "When we have completed all development and self-testing for the current feature module, please push by calling
git_push. Before pushing, you must first fully read and summarize all our saved records from this session viaget_pending_changes, generating a clear, structured Commit Message that covers all changes."Value: Making "summarizing historical records" a statutory pre-step for pushing, completely eliminating "goldfish memory" commits.
Periodic Review:
If the session is extremely long (e.g., lasting several hours), you can occasionally ask the AI to call
get_pending_changesfor a mid-term summary to ensure the stored records perfectly match the current actual code state.
3. MCP Tools
The server provides the following MCP tools:
git_push (or <TOOL_PREFIX>_git_push)
Execute git push command with a commit message. Automatically adds and commits changes before pushing. Requires reviewing pending changes first.
Important: You MUST call get_pending_changes to review changes before using this tool. The push will be blocked if changes haven't been reviewed.
What it does:
Automatically runs
git add .to stage all changesAutomatically runs
git commit -m "message"to commit changesExecutes
git pushto push to remote repositoryClears all pending changes and resets review status
Parameters:
message(string, required): Commit message
Example:
{
"name": "git_push",
"arguments": {
"message": "Update project files"
}
}If TOOL_PREFIX is set (e.g., "myproject"), the tool name becomes myproject_git_push.
Required Workflow:
Make code changes
Call
save_changesto record your modificationsCall
get_pending_changesto review and mark changes as reviewedCall
git_pushto automatically add, commit, and push changesFor subsequent pushes, repeat steps 3-4 (review status is reset after each push attempt)
This executes: git push <REMOTE_NAME> <LOCAL_BRANCH>:<REMOTE_BRANCH> --progress
get_push_history (or <TOOL_PREFIX>_get_push_history)
Get the last 5 push history records to check for duplicates.
Parameters: None
get_operation_logs (or <TOOL_PREFIX>_get_operation_logs)
Get operation logs for debugging.
Parameters:
limit(number, optional): Number of logs to return (default: 50)offset(number, optional): Offset for pagination (default: 0)
git_status (or <TOOL_PREFIX>_git_status)
Show the working directory and staging area status.
Parameters: None
Example:
{
"name": "git_status"
}git_diff (or <TOOL_PREFIX>_git_diff)
Show changes between working directory and HEAD or staging area.
Parameters:
staged(boolean, optional): Show staged changes instead of unstaged (default: false)files(array, optional): Specific files to show diff for
Examples:
{
"name": "git_diff"
}{
"name": "git_diff",
"arguments": {
"staged": true
}
}git_add (or <TOOL_PREFIX>_git_add)
Add file contents to the staging area.
Parameters:
files(array, optional): Files to add (default: ["."] for all files)
Examples:
{
"name": "git_add"
}{
"name": "git_add",
"arguments": {
"files": ["src/main.js", "src/utils.js"]
}
}git_log (or <TOOL_PREFIX>_git_log)
Show commit history.
Parameters:
limit(number, optional): Number of commits to show (1-100, default: 10)oneline(boolean, optional): Show commits in oneline format (default: false)
Examples:
{
"name": "git_log"
}{
"name": "git_log",
"arguments": {
"limit": 5,
"oneline": true
}
}git_pull (or <TOOL_PREFIX>_git_pull)
Execute git pull command from the configured remote and source branch.
Parameters: None
Example:
{
"name": "git_pull"
}This executes: git pull <REMOTE_NAME> <PULL_SOURCE_BRANCH>
save_changes (or <TOOL_PREFIX>_save_changes)
Save pending changes before pushing. Records modified files and change content for review.
Parameters:
files(array, required): Array of modified file pathscontent(string, required): Description of the changes made
Example:
{
"name": "save_changes",
"arguments": {
"files": ["src/main.js", "src/utils.js"],
"content": "Fixed bug in user authentication"
}
}get_pending_changes (or <TOOL_PREFIX>_get_pending_changes)
Get and review pending changes before pushing. This tool MUST be called before git_push to enable pushing.
Important: Calling this tool marks changes as reviewed, allowing git_push to proceed. The review status is reset after each push attempt.
Parameters:
limit(number, optional): Number of changes to return (1-1000, default: 1000 - shows all changes)offset(number, optional): Offset for pagination (default: 0)
Command Mapping
The server executes the following git command:
cd <PROJECT_PATH>
git push <REMOTE_NAME> <LOCAL_BRANCH>:<REMOTE_BRANCH> --progressFor example, with the default settings:
cd /path/to/project
git push origin main:main --progressValidation
The server performs the following validations on startup:
Checks for required environment variables
Verifies that
PROJECT_PATHexistsEnsures
PROJECT_PATHis a valid git repository (contains.gitdirectory)
Logging
All operations are logged to files in the configured log directory
Push history is maintained to prevent duplicate operations
Operation logs include request/response details for debugging
Error Handling
Environment variable validation on startup
Git command error handling with detailed error messages
Automatic logging of all operations and errors
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/liliangshan/mcp-server-git'
If you have feedback or need assistance with the MCP directory API, please join our Discord server