The Git Stuff Server is a Node.js application that provides Git-related functionalities via a Model Context Protocol (MCP) server. You can:
Generate Git Merge Diffs: Create text diffs for Git merge commits against their first parent using the
get_git_merge_difftool (requirescommitHashandrepoPathinputs)Fetch Azure DevOps PR Changed Files: Retrieve a list of changed files from the latest iteration of an Azure DevOps Pull Request using the
get_ado_pr_changed_filestool (requirespullRequestIdandorganizationIdinputs)
Provides Git-related functionality, specifically a tool to generate the diff for a Git merge commit against its first parent by running 'git show -m --first-parent' on a specified commit hash.
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., "@Git Stuff Servershow me the diff for merge commit abc123def"
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.
Git Stuff Server
This repository contains a Node.js application that acts as an MCP (Model Context Protocol) server to provide Git-related functionalities. Currently, it offers a tool to generate the diff for a Git merge commit against its first parent.
Features
MCP Server: Runs as a standard MCP server using stdio for communication.
get_git_merge_diffAccepts a Git merge commit hash.
Executes the
GenerateMergeDiff.ps1PowerShell script.Returns the textual diff content generated by
git show -m --first-parent <commitHash>.
Related MCP server: Git Forensics MCP
Prerequisites
Node.js (Version supporting ES Modules, check
enginesin package.json if specified, otherwise checktsconfig.jsontarget - ES2022)npm (usually comes with Node.js)
Git installed and accessible in the system's PATH.
PowerShell (Windows) or
pwsh(Linux/macOS) installed and accessible in the system's PATH.
Installation
Clone the repository:
git clone <your-repo-url> cd GitStuffServerInstall dependencies:
npm install
Usage
Build the TypeScript code:
npm run buildThis compiles the TypeScript code from
src/to JavaScript inbuild/.Run the server:
To run the compiled code:
npm startTo build and run in development mode:
npm run dev
The server will start and listen for MCP requests on standard input/output.
Using the get_git_merge_diff Tool
When connected via an MCP client, you can call the get_git_merge_diff tool with the following input:
commitHash(string): The Git commit hash (SHA) of the merge commit you want to diff.
The tool will return the diff content as text.
How it Works
The MCP server (
src/index.ts) receives a request for theget_git_merge_difftool.It validates the
commitHashinput.It executes the
GenerateMergeDiff.ps1PowerShell script, passing thecommitHash.The PowerShell script runs
git show -m --first-parent <commitHash>and saves the output (including any errors) to a temporary file namedmerge_changes.diffin the server's current working directory.The Node.js server reads the content of
merge_changes.diff.The server deletes the temporary
merge_changes.difffile.The server returns the diff content (or an error message) to the MCP client.
Configuration
Key configuration points are defined as constants within src/index.ts:
SERVER_NAME: The name registered by the MCP server.SCRIPT_NAME: The filename of the PowerShell script to execute.OUTPUT_DIFF_FILE: The name of the temporary diff file created by the script.
License
This project is licensed under the MIT License - see the package.json file for details.
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.