Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Diffsorted

FreeNot checked

Splits messy, multi-concern git diffs into focused groups and generates a clear, accurate commit message for each, exposed as an MCP server for use with MCP-com

GitHubEmbed

About

Splits messy, multi-concern git diffs into focused groups and generates a clear, accurate commit message for each, exposed as an MCP server for use with MCP-compatible clients.

README

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.

How it works

  1. Parse — reads the raw git diff output and breaks it into per-file segments.
  2. 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.
  3. Generate — calls Groq's LLaMA API once per chunk to produce a focused conventional commit message.

Tools exposed

Tool Description
get_diff Returns the raw git diff for a repo (staged or unstaged)
generate_commit_messages v1: one commit message per changed file
generate_commit_messages_v2 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.

from github.com/bhakti0725/diffsorted

Install Diffsorted in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install diffsorted

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add diffsorted -- npx -y diffsorted

Step-by-step: how to install Diffsorted

FAQ

Is Diffsorted MCP free?

Yes, Diffsorted MCP is free — one-click install via Unyly at no cost.

Does Diffsorted need an API key?

No, Diffsorted runs without API keys or environment variables.

Is Diffsorted hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Diffsorted in Claude Desktop, Claude Code or Cursor?

Open Diffsorted on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Diffsorted with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All communication MCPs