selfagency/git-mcp
A Git MCP server that doesn't suck
Platform-specific configuration:
{
"mcpServers": {
"git-mcp": {
"command": "npx",
"args": [
"-y",
"git-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> A Git MCP server that doesn't suck
Exposes the full Git workflow to any MCP-compatible AI client — inspect, write, branch, remote, stash, rebase, LFS, git-flow, documentation lookup, and more. Designed to be safe by default, composable, and fast. Powered by `simple-git`.
---
git-flow CLIskills/git-mcp-workflow/ documents MCP-first Git workflows, recovery, worktrees, releases, and advanced operations for agent usersrepo_path per-call or configure a server-level default---
npx @selfagency/git-mcp --repo-path /path/to/your/reponpm install -g @selfagency/git-mcp
git-mcp --repo-path /path/to/your/repoAdd to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"git": {
"command": "npx",
"args": ["-y", "@selfagency/git-mcp", "--repo-path", "/path/to/your/repo"]
}
}
}Add to .vscode/mcp.json in your project:
{
"servers": {
"git": {
"command": "npx",
"args": ["-y", "@selfagency/git-mcp", "--repoLoading reviews...