diffsorted
Provides tools for analyzing local Git repositories, extracting raw diffs, and generating focused conventional commit messages for changed files or logical concern groups.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@diffsortedsplit my current unstaged diff and generate commit messages per concern"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
diffsorted
Splits messy, multi-concern git diffs into focused groups and generates a clear, accurate commit message for each — exposed as an MCP (Model Context Protocol) server so any MCP-compatible clients (Claude Desktop, Claude Code, etc.) can use it directly against a local repo.
Why
Built as a follow-up to CommitMsg, an AI commit-message generator I shipped earlier. CommitMsg works well on small, single-concern diffs, but struggles when a diff spans multiple unrelated changes (e.g. a bug fix + unrelated formatting pass, or multiple files) — it either writes one vague message or focuses on the wrong part of the diff.
diffsorted solves this by splitting the diff before generating messages, so each commit message is scoped to one actual concern — closer to how atomic commits should look.
Related MCP server: Git Commit Message Generator MCP Server
How it works
Parse — reads the raw
git diffoutput and breaks it into per-file segments.Split — groups related files into concerns using one of two strategies:
splitByFile(v1) — one chunk per changed file.splitByConcern(v2) — groups files by directory/naming (e.g.auth.js+auth.test.js), and separates out formatting-only changes into their own chunk.
Generate — calls Groq's LLaMA API once per chunk to produce a focused conventional commit message.
Tools exposed
Tool | Description |
| Returns the raw git diff for a repo (staged or unstaged) |
| v1: one commit message per changed file |
| v2: one commit message per logical concern group |
Setup
```bash git clone https://github.com/bhakti0725/diffsorted.git cd diffsorted npm install ```
Create a .env file:
```
GROQ_API_KEY=your_key_here
```
Get a free key at console.groq.com/keys.
Connecting to Claude Desktop
Add to your claude_desktop_config.json:
```json
{
"mcpServers": {
"diffsorted": {
"command": "npx",
"args": ["tsx", "/absolute/path/to/diffsorted/src/index.ts"]
}
}
}
```
https://www.npmjs.com/package/diffsorted
visit the above link, and download the mcp server as a npm package using npm i diffsorted.
No cloning or manual setup needed — npx fetches and runs it automatically. You'll still need a Groq API key in a .env file in your working directory (see Setup above).
Tech stack
TypeScript, Model Context Protocol SDK, Groq (LLaMA 3.3 70B), Node.js child_process for git integration.
This server cannot be deployed
Maintenance
Related MCP Connectors
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for visual regression testing: triage a PR's UI diffs from your coding agent.
Related MCP Servers
- AlicenseBqualityCmaintenanceA Model Context Protocol server for creating commit messages from git staged files.21MIT
- AlicenseBqualityFmaintenanceAn intelligent MCP server that automatically generates Conventional Commits style commit messages by analyzing git diffs using LLM providers like DeepSeek and Groq. It enables developers to maintain standardized version history through natural language interactions in supported MCP clients.12MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that generates pull request descriptions, commit messages, and code reviews from actual code changes using git diff.3MIT
- AlicenseNot gradedqualityDmaintenanceAI-powered git diff analysis with human-readable explanations, risk flags, and review checklists. Enables to explain any diff text or currently staged git changes through an MCP server.MIT