A Model Context Protocol server providing tools to read, search, and manipulate Git repositories programmatically via LLMs
Project description
mcp-server-git: A git MCP server
Overview
A Model Context Protocol server for Git repository interaction and automation. This server provides tools to read, search, and manipulate Git repositories via Large Language Models.
Please note that mcp-server-git is currently in early development. The functionality and available tools are subject to change and expansion as we continue to develop and improve the server.
Tools
-
git_status- Shows the working tree status
- Input:
repo_path(string): Path to Git repository
- Returns: Current status of working directory as text output
-
git_diff_unstaged- Shows changes in working directory not yet staged
- Input:
repo_path(string): Path to Git repository
- Returns: Diff output of unstaged changes
-
git_diff_staged- Shows changes that are staged for commit
- Input:
repo_path(string): Path to Git repository
- Returns: Diff output of staged changes
-
git_diff- Shows differences between branches or commits
- Inputs:
repo_path(string): Path to Git repositorytarget(string): Target branch or commit to compare with
- Returns: Diff output comparing current state with target
-
git_commit- Records changes to the repository
- Inputs:
repo_path(string): Path to Git repositorymessage(string): Commit message
- Returns: Confirmation with new commit hash
-
git_add- Adds file contents to the staging area
- Inputs:
repo_path(string): Path to Git repositoryfiles(string[]): Array of file paths to stage
- Returns: Confirmation of staged files
-
git_reset- Unstages all staged changes
- Input:
repo_path(string): Path to Git repository
- Returns: Confirmation of reset operation
-
git_log- Shows the commit logs
- Inputs:
repo_path(string): Path to Git repositorymax_count(number, optional): Maximum number of commits to show (default: 10)
- Returns: Array of commit entries with hash, author, date, and message
-
git_create_branch- Creates a new branch
- Inputs:
repo_path(string): Path to Git repositorybranch_name(string): Name of the new branchstart_point(string, optional): Starting point for the new branch
- Returns: Confirmation of branch creation
-
git_checkout- Switches branches
- Inputs:
repo_path(string): Path to Git repositorybranch_name(string): Name of branch to checkout
- Returns: Confirmation of branch switch
-
git_show- Shows the contents of a commit
- Inputs:
repo_path(string): Path to Git repositoryrevision(string): The revision (commit hash, branch name, tag) to show
- Returns: Contents of the specified commit
Installation
Using uv (recommended)
When using uv no specific installation is needed. We will
use uvx to directly run mcp-server-git.
Using PIP
Alternatively you can install mcp-server-git via pip:
pip install mcp-server-git
After installation, you can run it as a script using:
python -m mcp_server_git
Configuration
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
Using uvx
"mcpServers": {
"git": {
"command": "uvx",
"args": ["mcp-server-git", "--repository", "path/to/git/repo"]
}
}
Using docker
- Note: replace '/Users/username' with the a path that you want to be accessible by this tool
"mcpServers": {
"git": {
"command": "docker",
"args": ["run", "--rm", "-i", "--mount", "type=bind,src=/Users/username,dst=/Users/username", "mcp/git"]
}
}
Using pip installation
"mcpServers": {
"git": {
"command": "python",
"args": ["-m", "mcp_server_git", "--repository", "path/to/git/repo"]
}
}
Usage with Zed
Add to your Zed settings.json:
Using uvx
"context_servers": [
"mcp-server-git": {
"command": {
"path": "uvx",
"args": ["mcp-server-git"]
}
}
],
Using pip installation
"context_servers": {
"mcp-server-git": {
"command": {
"path": "python",
"args": ["-m", "mcp_server_git"]
}
}
},
Debugging
You can use the MCP inspector to debug the server. For uvx installations:
npx @modelcontextprotocol/inspector uvx mcp-server-git
Or if you've installed the package in a specific directory or are developing on it:
cd path/to/servers/src/git
npx @modelcontextprotocol/inspector uv run mcp-server-git
Running tail -n 20 -f ~/Library/Logs/Claude/mcp*.log will show the logs from the server and may
help you debug any issues.
Development
If you are doing local development, there are two ways to test your changes:
-
Run the MCP inspector to test your changes. See Debugging for run instructions.
-
Test using the Claude desktop app. Add the following to your
claude_desktop_config.json:
Docker
{
"mcpServers": {
"git": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--mount", "type=bind,src=/Users/username/Desktop,dst=/projects/Desktop",
"--mount", "type=bind,src=/path/to/other/allowed/dir,dst=/projects/other/allowed/dir,ro",
"--mount", "type=bind,src=/path/to/file.txt,dst=/projects/path/to/file.txt",
"mcp/git"
]
}
}
}
UVX
{
"mcpServers": {
"git": {
"command": "uv",
"args": [
"--directory",
"/<path to mcp-servers>/mcp-servers/src/git",
"run",
"mcp-server-git"
]
}
}
Build
Docker build:
cd src/git
docker build -t mcp/git .
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_server_git-2025.1.14.tar.gz.
File metadata
- Download URL: mcp_server_git-2025.1.14.tar.gz
- Upload date:
- Size: 24.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34469d85b78370f4f167b7285da175ba735c7fccebfbf27569d9eed97bc467c2
|
|
| MD5 |
1fb0dd08c2e28dbcc45fbea00c262248
|
|
| BLAKE2b-256 |
5a43a148baa2b1e8599eda07c4b40aa95ff357afc62515388e365e8f12e55ffa
|
Provenance
The following attestation bundles were made for mcp_server_git-2025.1.14.tar.gz:
Publisher:
python.yml on modelcontextprotocol/servers
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_server_git-2025.1.14.tar.gz -
Subject digest:
34469d85b78370f4f167b7285da175ba735c7fccebfbf27569d9eed97bc467c2 - Sigstore transparency entry: 162142030
- Sigstore integration time:
-
Permalink:
modelcontextprotocol/servers@ea73a074e8d2b4c424429c7f364dae558211ff30 -
Branch / Tag:
refs/tags/2025.1.14 - Owner: https://github.com/modelcontextprotocol
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@ea73a074e8d2b4c424429c7f364dae558211ff30 -
Trigger Event:
release
-
Statement type:
File details
Details for the file mcp_server_git-2025.1.14-py3-none-any.whl.
File metadata
- Download URL: mcp_server_git-2025.1.14-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f60aca3761fb91d6b2ee5282d68c69858c57a95a2124727b9ed6bb8ced581d5
|
|
| MD5 |
799758165bd1ed4e717788ad6ce8dfa8
|
|
| BLAKE2b-256 |
84afcce17ee0dcaed40beda2d48a150850137caad0b824d9c491de1473fed364
|
Provenance
The following attestation bundles were made for mcp_server_git-2025.1.14-py3-none-any.whl:
Publisher:
python.yml on modelcontextprotocol/servers
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_server_git-2025.1.14-py3-none-any.whl -
Subject digest:
6f60aca3761fb91d6b2ee5282d68c69858c57a95a2124727b9ed6bb8ced581d5 - Sigstore transparency entry: 162142032
- Sigstore integration time:
-
Permalink:
modelcontextprotocol/servers@ea73a074e8d2b4c424429c7f364dae558211ff30 -
Branch / Tag:
refs/tags/2025.1.14 - Owner: https://github.com/modelcontextprotocol
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python.yml@ea73a074e8d2b4c424429c7f364dae558211ff30 -
Trigger Event:
release
-
Statement type: