GitHub MCP Server
Provides 29 Git operations for repository management, including basic operations (commit, push, pull, branch, stash) and advanced workflows (tag, merge, rebase, cherry-pick, blame, bisect).
Integration with GitHub repositories, enabling version control operations such as cloning, pushing, and managing remotes through the MCP interface.
Allows AI assistants like GitHub Copilot to perform Git operations through the MCP interface, enabling automated workflow management and enhanced developer productivity.
Click on "Deploy 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 Servershow me the current git status"
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
๐ View on MCP Market
๐ View on MCP Registry
๐ฆ Available on npm
A Model Context Protocol (MCP) server that provides 29 Git operations + 11 workflow combinations for AI assistants and developers. This server exposes comprehensive Git repository management through a standardized interface, enabling AI models and developers to safely manage complex version control workflows.
๐ Quick Installation
Option 1: .vscode/mcp.json (Recommended)
{
"mcpServers": {
"github-mcp-server": {
"command": "npx",
"args": ["-y", "@0xshariq/github-mcp-server@latest"]
}
}
}Option 2: For CLI
pnpm i -g @0xshariq/github-mcp-server@latest
# Test Commands After Installation
gstatus
gadd
glog 10
gpushOption 3: Symbolic Links (Alternative - No Package Manager)
# Clone and setup
git clone https://github.com/0xshariq/github-mcp-server.git
cd github-mcp-server
npm install && npm run build
# Create symbolic links (cross-platform)
./setup-symbolic.sh --user # User installation
# OR
sudo ./setup-symbolic.sh # System-wide (Linux/macOS)
# Test the installation
gstatus
glist๐ ๏ธ Having Issues? If commands aren't working after installation, see our Complete Troubleshooting Guide for solutions to all common problems including "command not found" errors, path conflicts, PNPM issues, and the symbolic links alternative.
Related MCP server: Git MCP
๐ฏ About
GitHub MCP Server bridges AI assistants with Git repositories and provides powerful developer productivity tools. It provides:
Safe Git operations through a standardized MCP interface (29 operations)
Complete version control capabilities including advanced operations (tag, merge, rebase, cherry-pick, blame, bisect)
31 workflow combinations for enhanced developer productivity
Advanced developer tools (backup, cleanup, workflow automation)
Error handling and validation to prevent common Git mistakes
Direct integration with VS Code and AI assistants like GitHub Copilot
CLI wrapper for terminal access and automation
๐ Features Overview
This server provides comprehensive Git repository management through two main categories:
๐ Basic Git Operations (17 operations)
Essential daily Git commands organized in bin/basic/ - see Basic Operations Guide for detailed documentation.
File Management: Add, remove files from staging area
Repository Information: Status, history, differences
Commit Operations: Create commits, push, pull
Branch Management: Create, switch branches
Remote Management: Add, remove, configure remotes
Stash Operations: Temporarily save changes
Reset Operations: Repository state management
๐ Advanced Git Operations (12 operations)
Sophisticated workflows and automation in bin/advanced/ - see Advanced Workflows Guide for comprehensive documentation.
Workflow Combinations: Complete flows (addโcommitโpush), quick commits, sync operations
Development Tools: Smart development workflows, backup systems
Advanced Git Features: Tags, merging, rebasing, cherry-picking, blame, bisect
Maintenance & Safety: Repository cleanup, optimization, backup management
Professional Workflows: Release management, hotfix procedures, team collaboration
๐ ๏ธ Installation
See markdown/INSTALLATION.md for detailed installation guide for Windows, macOS, WSL, and all platforms.
๐๏ธ Project Structure & Architecture
GitHub MCP Server is organized for clarity and progressive learning:
github-mcp-server/
โโโ src/
โ โโโ index.ts # MCP server (29 tool registrations, schema definitions)
โ โโโ github.ts # Git operations engine (all 29 implementations)
โโโ bin/
โ โโโ basic/ # ๐ 17 Essential Git Operations
โ โ โโโ README.md # Comprehensive basic operations guide
โ โ โโโ gadd.js # Add files (git add)
โ โ โโโ gcommit.js # Create commits (git commit)
โ โ โโโ gpush.js # Push changes (git push)
โ โ โโโ gpull.js # Pull changes (git pull)
โ โ โโโ gstatus.js # Repository status (git status)
โ โ โโโ gbranch.js # Branch management (git branch)
โ โ โโโ gcheckout.js # Branch switching (git checkout)
โ โ โโโ glog.js # Commit history (git log)
โ โ โโโ gdiff.js # Show differences (git diff)
โ โ โโโ gstash.js # Stash operations (git stash)
โ โ โโโ gpop.js # Apply stash (git stash pop)
โ โ โโโ greset.js # Reset operations (git reset)
โ โ โโโ gclone.js # Clone repositories (git clone)
โ โ โโโ gremote.js # Remote management (git remote)
โ โ โโโ ginit.js # Initialize repository (git init)
โ โโโ advanced/ # ๐ 13 Advanced Workflows & Automation
โ โโโ README.md # Comprehensive advanced workflows guide
โ โโโ gflow.js # Complete workflow (addโcommitโpush)
โ โโโ gquick.js # Quick commit workflow
โ โโโ gsync.js # Sync workflow (pullโpush)
โ โโโ gdev.js # Development session management
โ โโโ gworkflow.js # Professional workflow combinations
โ โโโ gfix.js # Smart fix and patch workflows
โ โโโ gfresh.js # Fresh start workflows
โ โโโ gbackup.js # Backup and safety operations
โ โโโ gclean.js # Repository cleanup and optimization
โ โโโ gsave.js # Save and preserve workflows
โ โโโ glist.js # Tool discovery and help system
โ โโโ grelease.js # Release management workflows
โ โโโ common.js # Shared utilities and helpers
โโโ markdown/
โ โโโ INSTALLATION.md # Detailed installation guide
โ โโโ DEPLOY.md # Production deployment guide
โ โโโ DOCKER.md # Docker setup and deployment guide
โ โโโ QUICK_REFERENCES.md # Copy-paste command reference
โโโ mcp-cli.js # Enhanced CLI wrapper (organized by structure)
โโโ package.json # Project configuration & npm scripts
โโโ tsconfig.json # TypeScript configuration
โโโ README.md # This comprehensive guide๐ Documentation Structure
bin/basic/README.md - Complete guide to 17 essential Git operations
bin/advanced/README.md - Comprehensive advanced workflows documentation
markdown/INSTALLATION.md - Step-by-step installation for all platforms
markdown/TROUBLESHOOTING.md - ๐ ๏ธ Complete troubleshooting guide - Solutions to all common issues
markdown/MCP_UNIVERSAL_CONFIG.md - Universal MCP configuration for all LLM clients
markdown/QUICK_REFERENCES.md - Copy-paste commands for quick reference
markdown/DOCKER.md - Docker setup, deployment, and containerization
markdown/DEPLOY.md - Production deployment and hosting strategies
๐ง Technical Architecture
๐ก MCP Server Core (src/index.ts)
29 Tool Registrations with complete JSON schemas
Enhanced Metadata with operation tracking and performance monitoring
Input Validation using Zod schemas for type safety
Error Handling Pipeline with timeout protection and meaningful messages
Cross-platform Compatibility with environment normalization
โ๏ธ Git Operations Engine (src/github.ts)
Comprehensive Implementation of all 29 Git operations
Security Features - Command injection prevention and input sanitization
Enhanced Error Handling with context-aware messaging for common scenarios
Performance Monitoring - Operation duration tracking and logging
Safety Checks - Repository validation and file existence verification
๐ฅ๏ธ Enhanced CLI System
Smart Organization - Tools categorized by basic vs advanced operations
Directory-Aware Help - References to specific README files for detailed guidance
Progressive Learning - Clear path from basic to advanced operations
Tool Discovery - Enhanced
glistcommand with category filtering
๐ก๏ธ Error Handling & Safety
๐ Repository Validation: Ensures directory is a valid Git repository
๐ File Existence Checks: Validates files exist before Git operations
โฑ๏ธ Timeout Protection: 30-second timeout for operations
๐ซ Input Sanitization: Prevents command injection
๐ Detailed Error Messages: Clear, actionable error descriptions
๐ ๏ธ Troubleshooting
Having issues with installation or commands not working? We've got you covered! Our comprehensive troubleshooting guide covers solutions to all common problems:
๐จ Most Common Issues & Quick Fixes
Problem | Quick Solution |
๐ฅ |
|
๐ Path conflicts with PNPM | Remove |
๐ Commands show help instead of executing | Update wrapper scripts to pass command names |
๐ซ Permission denied |
|
๐ For detailed solutions, step-by-step fixes, and diagnostic tools, see our Complete Troubleshooting Guide
๐ Quick Diagnostic
# Test if commands are working
gstatus # Should show repository status
env gstatus # Alternative if above fails
which gstatus # Should show path to command
# If still having issues, see TROUBLESHOOTING.md for complete solutionsLicense
ISC License
Author
Created for use with AI assistants that support the Model Context Protocol.
This server cannot be deployed
Maintenance
Related MCP Connectors
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Read and write KukGit repositories, files, issues and pull requests from an AI assistant.
AI-native git hosting โ repos, PRs, issues, CI gates, and AI code review over MCP (60 tools).
Git-backed platform for skills, tools, and context for AI agents
Related MCP Servers
- -licenseAqualityNot gradedmaintenanceProvides comprehensive Git operations as tools for AI assistants and applications. This server enables AI systems to interact with Git repositories, allowing to initialize, fetch, commit, log, status, etc..102 npm1-
- -licenseBqualityNot gradedmaintenanceEnables comprehensive Git and GitHub operations through 30 DevOps tools including repository management, file operations, workflows, and advanced Git features. Provides complete Git functionality without external dependencies for seamless integration with Gitea and GitHub platforms.18819 npm-
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to perform full Git operations including branching, committing, pushing, stashing, rebasing, and more, with safety features and support for advanced workflows like Git Flow and LFS.39 npmMIT
- AlicenseAqualityBmaintenanceLocal Git MCP server exposing 29 tools that let AI clients manage repositories, commits, branches, remotes, and advanced git operations via natural language.29MIT