Git log, diff, blame, branch stats for AI agents
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"git-tools": {
"args": [
"D:/products/mcp-servers/mcp-git-tools/dist/index.js"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Git repository analysis tools for AI agents, served over MCP (Model Context Protocol). Analyzes local repositories using native git commands — no GitHub API required.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Manage Supabase projects — databases, auth, storage, and edge functions
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
MCP Security Weekly
Get CVE alerts and security updates for Git log, diff, blame, branch stats for AI agents and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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