All MCP servers
File & codeOfficial

Git

By Anthropic

Read-only-ish access to a git repository. Useful for "explain this commit", "find when this regression landed", and "summarise what changed in this branch".

Install

Run directly:
$ uvx mcp-server-git --repository /path/to/repo
Add to claude_desktop_config.json:
{
  "mcpServers": {
    "git": {
      "command": "uvx",
      "args": ["mcp-server-git", "--repository", "/path/to/repo"]
    }
  }
}

What you can do with it

  • Ask "what changed between v1.2 and v1.3?" and get a real diff summary.
  • Find the commit that introduced a bug via git log + grep.
  • Summarise a long PR by walking its commits.

Works with

Claude DesktopClaude CodeCursorZedWindsurfCline

Other file & code servers