Provides tools for analyzing git repositories, including commit history analysis, branch comparison, file change detection, and automatic generation of merge request summaries from git logs
Enables automatic generation of comprehensive merge request summaries and descriptions for GitHub pull requests by analyzing commit history and categorizing changes
Click on "Install 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., "@MCP Merge Request Summarizersummarize changes between main and feature/auth-update"
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.
MCP Merge Request Summarizer
An MCP (Model Context Protocol) tool that automatically generates comprehensive merge request summaries from git logs. This tool analyzes commit history, categorizes changes, and produces structured summaries suitable for merge request descriptions.
π Features
Automatic Commit Analysis: Analyzes git logs between branches to understand changes
Smart Categorization: Categorizes commits by type (features, bug fixes, refactoring, etc.)
Comprehensive Summaries: Generates detailed merge request descriptions with:
Overview and statistics
Key changes and significant commits
Categorized changes (features, bug fixes, refactoring)
Breaking changes detection
File categorization and impact analysis
Estimated review time
Multiple Output Formats: Supports both Markdown and JSON output
Flexible Integration: Works standalone or as MCP server
Cross-Platform: Compatible with Windows, macOS, and Linux
Related MCP server: GitLab PR Analysis MCP Server
π¦ Installation
π Quick Start (Recommended)
Clone the repository:
git clone https://github.com/yourusername/mcp-merge-request-summarizer.git cd mcp-merge-request-summarizerRun the installation script:
Windows: Double-click
install.bator runinstall.batin PowerShellMac/Linux: Run
chmod +x install.sh && ./install.sh
Configure your editor:
See
QUICK_START.mdfor 30-second setup instructionsOr check
configs/README.mdfor detailed configuration options
Manual Installation
git clone https://github.com/yourusername/mcp-merge-request-summarizer.git
cd mcp-merge-request-summarizer
pip install -e .From PyPI
pip install mcp-merge-request-summarizerNote: This package is not yet published to PyPI. For now, use the installation scripts or manual installation.
π§ Usage
As a Standalone Tool
# Basic usage (compares current branch against develop)
python -m mcp_mr_summarizer.cli
# Specify different branches
python -m mcp_mr_summarizer.cli --base main --current feature/new-feature
# Output to file
python -m mcp_mr_summarizer.cli --output mr_summary.md
# JSON output
python -m mcp_mr_summarizer.cli --format json --output summary.json
# Help
python -m mcp_mr_summarizer.cli --helpAs an MCP Server
Configure your MCP client (e.g., Claude Desktop, Cursor, VSCode):
{ "mcp.servers": { "merge-request-summarizer": { "command": "python", "args": ["-m", "mcp_mr_summarizer.server"] } } }Set up working directory context (recommended):
# Set your working directory so repo_path="." works correctly await set_working_directory("/path/to/your/git/repo")Use the tools and resources through your MCP client interface:
Tools (Actions)
set_working_directory: Set the agent's working directory contextget_working_directory: Get the current working directory contextgenerate_merge_request_summary: Creates full MR summariesanalyze_git_commits: Provides detailed commit analysis
Resources (Data)
git://repo/status: Current repository status and informationgit://commits/{base_branch}..{current_branch}: Commit history between branchesgit://branches: List of all repository branchesgit://files/changed/{base_branch}..{current_branch}: Files changed between branches
π Example Output
# feat: 4 new features and improvements
## Overview
This merge request contains 9 commits with 35 files changed (1543 insertions, 1485 deletions).
## Key Changes
- Refactor mappers in MLB, NBA, NHL, and NFL to use object initializer syntax (bdf5d9c) - 3028 lines changed
- Refactor season stats services to use base class and improve dependency injection (30de323) - 1976 lines changed
### π New Features (4)
- Add soccer metrics extraction methods and register soccer season stats service (176930f)
- Update services to use constructor injection for dependencies (29f1c46)
- Update CbStatsDaemon and CbStatsFeedPublicApi to use async host run methods (22c1202)
- Refactor PoolSeasonStatsController and related services (3a28ab4)
### π§ Refactoring (3)
- Refactor mappers in MLB, NBA, NHL, and NFL to use object initializer syntax (bdf5d9c)
- Refactor season stats services to use base class and improve dependency injection (30de323)
- Refactor logging in season stats services to use consistent casing (fd7b8b9)
### π Summary
- **Total Commits:** 9
- **Files Changed:** 35
- **Lines Added:** 1543
- **Lines Removed:** 1485
- **Estimated Review Time:** 1h 15mπ οΈ Configuration
Quick Configuration (Recommended)
For VSCode/Cursor:
Open Settings (Ctrl/Cmd + ,)
For VSCode: Search for "mcp" and click "Edit in settings.json"
For Cursor: Go to Tools & Integrations β New MCP Server
Add this configuration:
VSCode (settings.json):
{
"mcp.servers": {
"merge-request-summarizer": {
"command": "python",
"args": ["-m", "mcp_mr_summarizer.server"]
}
}
}Cursor (GUI or settings.json):
Name:
merge-request-summarizerCommand:
pythonArguments:
["-m", "mcp_mr_summarizer.server"]
Cursor (alternative JSON format):
{
"mcpServers": {
"merge-request-summarizer": {
"command": "python",
"args": ["-m", "mcp_mr_summarizer.server"]
}
}
}For Claude Desktop:
Go to Settings β MCP Servers
Add new server with this configuration:
{
"mcpServers": {
"merge-request-summarizer": {
"command": "python",
"args": ["-m", "mcp_mr_summarizer.server"]
}
}
}Ready-to-Use Config Files
Copy the appropriate configuration from the configs/ folder:
configs/vscode_settings.json- For VSCodeconfigs/cursor_settings.json- For Cursorconfigs/claude_desktop_config.json- For Claude Desktop
See configs/README.md for detailed setup instructions.
π― Customization
Adding Custom Commit Categories
Extend the categorization by modifying the categorize_commit method:
def categorize_commit(self, commit: CommitInfo) -> List[str]:
categories = []
message_lower = commit.message.lower()
# Add your custom patterns
if any(word in message_lower for word in ['security', 'vulnerability']):
categories.append('security')
# ... existing patterns ...
return categoriesCustomizing File Categories
Add custom file type categories:
def _categorize_files(self, files: set) -> Dict[str, List[str]]:
categories = {
'Services': [],
'Models': [],
'Controllers': [],
'Tests': [],
'Configuration': [],
'Documentation': [],
'CustomCategory': [], # Add your custom category
'Other': []
}
for file in files:
if 'CustomPattern' in file: # Add your custom pattern
categories['CustomCategory'].append(file)
# ... existing patterns ...
return categoriesπ§ͺ Testing
# Run tests
python -m pytest tests/
# Run with coverage
python -m pytest tests/ --cov=mcp_mr_summarizer --cov-report=htmlπ€ Contributing
Fork the repository
Create a feature branch (
git checkout -b feature/amazing-feature)Make your changes
Add tests for your changes
Run the test suite
Commit your changes (
git commit -m 'Add some amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
π License
This project is licensed under the MIT License - see the LICENSE file for details.
π Acknowledgments
Built for the Model Context Protocol (MCP) ecosystem
Inspired by the need for better merge request documentation
Thanks to all contributors and users
π Support
Issues: GitHub Issues
Discussions: GitHub Discussions
Documentation: Wiki
Made with β€οΈ for developers who want better merge request summaries