
Diffpilot
- 6 repo stars
- Updated January 18, 2026
- bkalafat/DiffPilot
DiffPilot is a MCP server that supports PR code review, commit messages, changelogs, and secret detection over git diffs.
About
DiffPilot is a Model Context Protocol server aimed at git-centric shipping workflows for small teams and developers. Instead of switching between a review UI, a changelog doc, and a secrets scanner, you expose those capabilities as MCP tools your agent can call while you are finishing a branch. Typical flows include asking for a structured PR review on the current diff, generating a conventional commit message, summarizing changes into release notes, and flagging likely leaked credentials in the patch. The server is distributed as a NuGet package (DiffPilot) at version 1.0.7 with stdio transport, which fits local agent setups in Claude Code, Cursor, or other MCP clients on.NET-friendly environments. It complements human review rather than replacing it: you still own merge decisions, but the agent can standardize tone, catch obvious secret patterns, and reduce blank-page friction for changelogs when you ship frequently.
- MCP tools for pull request code review workflows
- Commit message generation aligned with your changes
- Changelog drafting from commit or PR history
- Secret detection on diffs before merge
- NuGet package DiffPilot v1.0.7 with stdio transport
Diffpilot by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add Diffpilot -- npx -y bkalafat/DiffPilotAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 6 |
|---|---|
| Last updated | January 18, 2026 |
| Repository | bkalafat/DiffPilot ↗ |
What it does
Run PR-focused code review, commit-message drafting, changelog generation, and secret detection from your agent via a single MCP server.
Who is it for?
Best when you merge often and want agent-assisted review and release writing without leaving the IDE.
Skip if: Organizations that need enterprise SAST/DAST platforms, formal compliance sign-off workflows, or review policies that cannot use LLM-generated commentary.
What you get
After you add DiffPilot, your agent can review diffs, propose commit messages and changelogs, and surface secret risks in one MCP-driven pre-merge loop.
- Structured PR review output from agent-invoked MCP tools
- Draft commit messages and changelog sections tied to your changes
- Secret-detection signal on diffs before you merge
By the numbers
- Server version 1.0.7
- NuGet registry identifier DiffPilot
- stdio transport
README.md
🔍 DiffPilot
Local AI Code Review Before You Push
💡 Why DiffPilot?
Review your code locally before creating a PR. DiffPilot is an MCP server that lets you:
- Self-Review Before PR - Run AI code review on your local changes after your last commit, before pushing
- Reviewer Workflow - As a code reviewer, checkout the source branch locally and get AI-assisted review
- Auto Branch Detection - No need to specify
main- DiffPilot finds your base branch automatically
🔒 100% Local - No cloud, no external APIs. Works with Azure DevOps, TFS, air-gapped environments.
🚀 Quick Start
Install
# VS Code Marketplace
ext install BurakKalafat.diffpilot
# Or NuGet (.NET tool)
dotnet tool install -g DiffPilot
Use with GitHub Copilot
# Review my changes (auto-detects base branch)
@workspace #review_pr_changes
# Review with focus areas
@workspace #review_pr_changes focus on security and error handling
# Generate commit message
@workspace #generate_commit_message
# Scan for secrets before committing
@workspace #scan_secrets
🛠️ 9 MCP Tools
PR Review Tools
| Tool | Example Prompt |
|---|---|
#get_pr_diff |
"Show diff between my branch and main" |
#review_pr_changes |
"Review my PR for security issues" |
#generate_pr_title |
"Generate a conventional PR title" |
#generate_pr_description |
"Create PR description with checklist" |
Developer Tools
| Tool | Example Prompt |
|---|---|
#generate_commit_message |
"Generate commit message for staged changes" |
#scan_secrets |
"Check for API keys in my changes" |
#diff_stats |
"Show change statistics" |
#suggest_tests |
"What tests should I write?" |
#generate_changelog |
"Generate changelog from commits" |
✨ Key Features
| Feature | Description |
|---|---|
| 🔄 Auto Branch Detection | Automatically finds main, master, or develop |
| 🔐 Secret Scanning | Detects API keys, passwords, tokens, JWT |
| 📊 Diff Statistics | Lines added/removed, file breakdown by type |
| 🧪 Test Suggestions | Pattern-based test case recommendations |
| 📝 Conventional Commits | Generate feat:, fix:, refactor: messages |
| 🛡️ Enterprise Security | Bank-grade input validation, rate limiting, output sanitization |
🛡️ Security
DiffPilot implements enterprise-grade security features:
| Security Feature | Description |
|---|---|
| Input Validation | All parameters validated against strict patterns |
| Injection Prevention | Command injection, path traversal protection |
| Output Sanitization | Auto-redacts secrets from tool outputs |
| Rate Limiting | Prevents DoS attacks (120 req/min) |
| Secure Errors | No internal details exposed to clients |
| Audit Logging | Security events logged to stderr |
Auto-Redacted Patterns: API keys, AWS credentials, GitHub/Slack tokens, JWTs, passwords, private keys, connection strings.
See SECURITY.md for full documentation.
📋 Use Cases
1. Self-Review Before PR
# After finishing your work, before creating PR:
@workspace #review_pr_changes
# AI reviews your changes and provides feedback
# Fix issues locally, then push with confidence
2. Code Reviewer Workflow
# Checkout the feature branch locally
git checkout feature/user-auth
# Use DiffPilot to review
@workspace #review_pr_changes focus on security
# Get structured review with AI assistance
3. Pre-Commit Secret Check
@workspace #scan_secrets
# Catches API keys, passwords, tokens before they're committed
⚙️ Configuration
{
"diffpilot.defaultBaseBranch": "main",
"diffpilot.prTitleStyle": "conventional",
"diffpilot.commitMessageStyle": "conventional"
}
📦 Installation Options
| Method | Command |
|---|---|
| VS Code | ext install BurakKalafat.diffpilot |
| NuGet | dotnet tool install -g DiffPilot |
| Manual | git clone + dotnet build |
Requirements: .NET 9 SDK, VS Code 1.101+, Git
📜 Version History
1.2.0 (2025-12-09)
- Security Hardening - Bank-grade security features
- Input validation (CWE-20)
- Command injection prevention (CWE-78)
- Path traversal protection (CWE-22)
- Output sanitization - auto-redacts secrets (CWE-200)
- Rate limiting (CWE-400)
- Secure error handling
- Added SECURITY.md documentation
- 80 new security unit tests
1.1.5 (2025-12-08)
- Updated README with use cases and
#toolprompts - Highlighted auto branch detection
1.1.4 (2025-12-07)
- Icon refinements
1.1.3 (2025-12-07)
- New extension icon (lens with plus/minus)
1.1.2 (2025-12-07)
- Optimized package size
1.1.1 (2025-12-07)
- Updated extension icon
1.1.0 (2025-12-07)
- Improved tool documentation
1.0.9 (2025-12-07)
- Fixed: Server uses workspace folder for git operations
1.0.8 (2025-12-07)
- Shortened tool descriptions for cleaner UI
1.0.7 (2025-12-07)
- Fixed: Bundled server includes TargetFramework
1.0.6 (2025-12-07)
- Fixed: MCP auto-registration for VS Code 1.101+
1.0.5 (2025-12-07)
- Published to NuGet and MCP Registry
1.0.0 (2025-12-06)
- Initial release with 9 MCP tools
📄 License
MIT License - Burak Kalafat
GitHub • VS Code Marketplace • NuGet
⭐ Star if useful!
Recommended MCP Servers
How it compares
Git diff and PR helper MCP server, not a full static-analysis platform or a deployment orchestrator.
FAQ
Who is DiffPilot for?
Developers using MCP agents who want PR review help, commit messages, changelogs, and basic secret detection on diffs before merge.
When should I use DiffPilot?
Use it in Ship during code review and launch prep when you have a branch or PR ready and need consistent review notes and release text fast.
How do I add DiffPilot to my agent?
Install the DiffPilot NuGet package v1.0.7, register the stdio MCP server in your client config, and invoke its tools against your local repo or PR diff context.