Wraps native git commands into five MCP tools that let AI agents analyze local repositories without touching the GitHub API. You get git_log with filtering by author, date, and path, git_diff for comparing refs with change summaries, git_blame for line-by-line authorship, git_stats for commit and contributor breakdowns, and git_branch for listing branches with ahead/behind counts and merge status. Runs on Node.js 18+ and calls git directly from your PATH. Useful when you want Claude to review commit history, track down who changed specific lines, or understand repository activity patterns from the filesystem rather than a remote API.
Git repository analysis tools for AI agents, served over MCP (Model Context Protocol). Analyzes local repositories using native git commands — no GitHub API required.
| Tool | Description |
|---|---|
git_log | Get commit history with filtering by author, date range, and file path |
git_diff | Show diff between commits, branches, or tags with change summaries |
git_blame | Show who last modified each line of a file with commit info |
git_stats | Repository statistics: commits, contributors, activity over time, most changed files |
git_branch | List branches with last commit info, ahead/behind counts, merged/unmerged status |
npm install
npm run build
Add to your MCP client configuration:
{
"mcpServers": {
"git-tools": {
"command": "node",
"args": ["D:/products/mcp-servers/mcp-git-tools/dist/index.js"]
}
}
}
Retrieve recent commit history with optional filters.
Parameters:
repoPath (required) — Absolute path to the Git repositorycount — Number of commits to return (default: 20)author — Filter by author name or emailsince / until — Date range filterspath — Filter to commits touching a specific file or directoryCompare two refs and get a structured summary of changes.
Parameters:
repoPath (required) — Absolute path to the Git repositoryfrom — Start ref (default: HEAD~1)to — End ref (default: HEAD)path — Limit diff to a specific file or directorysummaryOnly — Return only stats without full diff textSee line-by-line authorship of a file.
Parameters:
repoPath (required) — Absolute path to the Git repositoryfilePath (required) — File path relative to repo rootstartLine / endLine — Blame a specific line rangeref — Blame at a specific commitGet a high-level overview of repository activity.
Parameters:
repoPath (required) — Absolute path to the Git repositorytopAuthors — Number of top contributors to list (default: 10)topFiles — Number of most-changed files to list (default: 10)List and analyze branches.
Parameters:
repoPath (required) — Absolute path to the Git repositorybaseBranch — Branch to compare against (default: main or master)includeRemote — Include remote-tracking branchesmergedOnly / unmergedOnly — Filter by merge statusMIT
ray0907/git-mcp-server
cyanheads/git-mcp-server
io.github.b1ff/atlassian-dc-mcp-bitbucket
io.github.b1ff/atlassian-dc-mcp-jira
com.mcparmory/atlassian-jira
sirlordt/vscode-terminal-mcp