Provides a comprehensive set of version control tools to initialize repositories, stage changes, create commits, manage branches, and perform rollbacks programmatically.
Enables automated version control workflows for repositories, allowing AI agents to handle commits, branching, and repository history management.
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., "@GitHub MCP Servercommit all my current changes with the message 'fix: update api endpoint'"
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.
GitHub MCP Server
A Model Context Protocol (MCP) server providing version control operations as tools for AI coding agents. Built specifically for integration with LangChain deepagents and other MCP-compatible LLM workflows.
What is This?
This MCP server exposes Git version control operations as structured tools that Large Language Models (LLMs) and AI agents can invoke programmatically. Instead of executing raw git commands, an AI coding agent can call typed, validated tools like commit_all_changes, rollback_to_commit, or compare_commits through the standardized MCP protocol.
Why Use This?
Problem | Solution |
AI agents generate code without version history | Every code change can be committed automatically |
Bad AI-generated code breaks the project | Rollback to any previous commit instantly |
No visibility into what the agent changed | Compare any two commits to see exact diffs |
Risk of losing work during agent iterations | Branching allows safe experimentation |
Installation
Prerequisites
Python 3.11+
uv package manager
Git installed on system
Setup
Running the Server
STDIO Mode (Default)
For local usage with LangChain or other MCP clients:
With Default Repository Path
Set REPO_PATH to avoid passing repo_path in every tool call:
Development/Debugging
Use the MCP inspector for testing:
Available Tools
This server provides 10 tools for complete version control workflows.
1. initialize_repo
Purpose: Initialize a new git repository or verify an existing one.
Parameter | Type | Required | Default | Description |
| string | ✅ | - | Absolute path to repository directory |
| boolean | ❌ |
| Create initial commit with README |
Returns: Status message (e.g., "Initialized repository with initial commit: abc1234")
When to Use:
Starting a new project from scratch
Before any other git operations on a fresh directory
Safe to call on already-initialized repos (will return "Already initialized")
Example:
2. get_repo_status
Purpose: Check the current state of the repository.
Parameter | Type | Required | Description |
| string | ✅ | Absolute path to repository |
Returns: JSON object with:
is_initialized: Whether git is set upcurrent_branch: Active branch namehas_changes: Whether there are uncommitted changesstaged_files: Files ready to commitmodified_files: Changed but unstaged filesuntracked_files: New files not yet tracked
When to Use:
Before committing, to see what will be included
After making changes, to verify modifications
To check which branch you're on
3. commit_all_changes
Purpose: Stage ALL changes and create a commit in one action.
Parameter | Type | Required | Description |
| string | ✅ | Absolute path to repository |
| string | ✅ | Commit message describing changes |
Returns: Commit SHA (40-character hash) or "No changes to commit"
Behavior:
Automatically runs
git add -A(stages everything)Creates commit with provided message
Lazy initialization: If repo isn't initialized, initializes it first
When to Use:
After generating/modifying code, to save a checkpoint
Before risky operations, to have a rollback point
At logical milestones during development
Best Practices for Commit Messages:
Use conventional format:
feat:,fix:,docs:,refactor:,test:Be descriptive: "feat: add user authentication with JWT tokens"
Reference the change: "fix: resolve null pointer in login handler"
4. list_commits
Purpose: Retrieve commit history with details.
Parameter | Type | Required | Default | Description |
| string | ✅ | - | Absolute path to repository |
| string | ❌ |
| Branch name or "HEAD" for current |
| integer | ❌ |
| Maximum commits to return |
Returns: JSON with array of commits, each containing:
sha: Full 40-char commit hashshort_sha: 7-char abbreviated hashmessage: Commit messageauthor: Author nameauthor_email: Author emailtimestamp: ISO timestamp
When to Use:
To find a commit SHA for rollback
To review what changes were made
To compare two specific commits
5. rollback_to_commit
Purpose: Reset the repository to a previous commit.
Parameter | Type | Required | Default | Description |
| string | ✅ | - | Absolute path to repository |
| string | ✅ | - | SHA of target commit (full or short) |
| string | ❌ |
| Reset mode: |
Reset Modes Explained:
Mode | Staged Changes | Working Directory | Use Case |
| ✅ Preserved | ✅ Preserved | Undo last commit, keep changes staged |
| ❌ Unstaged | ✅ Preserved | Undo commit, keep files but unstage |
| ❌ Deleted | ❌ Deleted | DANGEROUS: Completely discard all changes |
Returns: Message with new HEAD SHA
⚠️ WARNING: hard mode permanently deletes uncommitted changes!
When to Use:
Agent generated bad code → rollback to last good commit
Want to redo work differently → soft reset
Experiment failed → hard reset to clean state
6. compare_commits
Purpose: Show detailed diff between any two commits.
Parameter | Type | Required | Description |
| string | ✅ | Absolute path to repository |
| string | ✅ | Source commit SHA (older) |
| string | ✅ | Target commit SHA (newer) |
Returns: JSON with:
from_commit,to_commit: The compared SHAsfiles: Array of changed files, each with:filename: Path to filestatus:added,modified,deleted, orrenamedadditions: Lines addeddeletions: Lines removedpatch: Unified diff content
total_additions,total_deletions: Summary countssummary: Human-readable summary
When to Use:
Review what an agent changed in last iteration
Debug regressions by comparing working vs broken states
Understand evolution of code over time
7. create_branch
Purpose: Create a new git branch for isolated work.
Parameter | Type | Required | Default | Description |
| string | ✅ | - | Absolute path to repository |
| string | ✅ | - | Name for new branch |
| string | ❌ | Current HEAD | Commit/branch to branch from |
Returns: Confirmation message with branch name
When to Use:
Before experimental changes, create a feature branch
Keep main branch stable while agent experiments
Work on multiple features in parallel
Naming Conventions:
feature/add-auth- New functionalityfix/login-bug- Bug fixesexperiment/new-algo- Experimental work
8. switch_branch
Purpose: Switch to a different branch.
Parameter | Type | Required | Description |
| string | ✅ | Absolute path to repository |
| string | ✅ | Branch to switch to |
Returns: Confirmation of current branch after switch
When to Use:
Switch back to main after completing feature
Move between different work streams
Test code on different branches
9. list_branches
Purpose: Show all branches with current branch indicator.
Parameter | Type | Required | Description |
| string | ✅ | Absolute path to repository |
Returns: Formatted list with * marking current branch:
10. generate_commit_message
Purpose: Auto-generate a commit message based on staged changes.
Parameter | Type | Required | Default | Description |
| string | ✅ | - | Absolute path to repository |
| string | ❌ |
|
|
Returns: Suggested commit message with change summary
Styles:
conventional: Uses prefixes likefeat:,fix:,docs:simple: Plain descriptive message
Workflow Examples
Basic Agent Workflow
Safe Experimentation
Debugging Workflow
Dependencies
Package | Version | Purpose |
| ≥1.26.0 | MCP Python SDK for server/tools |
| ≥3.1.46 | Git repository operations |
| ≥2.8.1 | GitHub API (future remote ops) |
| ≥2.0.0 | Structured data models |
Architecture
Error Handling
All tools return clear error messages:
Scenario | Error Message |
Git not initialized | "Git repository not initialized. Call initialize_repo first." |
Invalid commit SHA | "Invalid commit SHA: [sha]" |
Branch not found | "Branch '[name]' not found" |
No changes to commit | "No changes to commit" |
License
MIT