Labsco
MCP SERVER

Git Analytics

by singhashish4000

Ask a Git repository who works on it, what changes most, and where the churn is — without composing a single git log incantation.

Local Version Control
Summary
Repository questions that git log makes tedious.

It answers the maintenance questions — who owns this area, which files never stop changing, whether a branch has drifted — from the repository itself, so the answer is current rather than remembered.

What it is

Eight read-only analytics calls over a local Git repository: totals, contributors, branches, files, commit timeline, commit frequency, and lines added versus removed.

What you get
  • A summary of the repository with key metrics and top contributors
  • Detailed statistics: commits, authors, branches, span of history
  • A contributor breakdown with commit patterns and activity periods
  • Branch health, including ahead and behind status
  • The files modified most often, and who modifies them
  • A commit timeline you can filter
  • Daily commit frequency over a period
  • Lines added and removed over time
Requirements

Node.js 18 or newer, a checkout of the repository you want analysed, and a build step — install dependencies and build before pointing your client at the compiled server.