{
"mcpServers": {
"mcp-server-git": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Git repository operations
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 39 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
An open-source AI agent that brings the power of Gemini directly into your terminal.
The full-stack TypeScript framework to build, test, and deploy production-ready MCP servers and AI-native apps.
Open-source persistent memory for AI agent pipelines (LangGraph, CrewAI, AutoGen) and Claude. REST API + knowledge graph + autonomous consolidation.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Git and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for Git repository operations. Built in Go using go-git for native Git support.
| Tool | Description |
|------|-------------|
| git_status | Show working tree status |
| git_diff_unstaged | Show changes not yet staged |
| git_diff_staged | Show changes staged for commit |
| git_diff | Show differences between branches/commits |
| git_add | Stage files for commit |
| git_reset | Unstage all staged changes |
| git_commit | Create a commit |
| git_log | Show commit history |
| git_create_branch | Create a new branch |
| git_checkout | Switch branches |
| git_show | Show commit contents |
| git_branch | List branches |
Download the latest release from GitHub Releases.
go install github.com/tosolveit/mcp-server-git@latest
Add to your claude_desktop_config.json:
{
"mcpServers": {
"git": {
"command": "/path/to/mcp-server-git"
}
}
}
# Run with stdio transport (default)
mcp-server-git
# Run with HTTP transport
mcp-server-git --transport http --port 8080
# Print version
mcp-server-git --version
All tools require a repo_path parameter pointing to a Git repository.
MIT