git-quick-stats MCP server
OfficialProvides tools to run git-quick-stats commands on a git repository, enabling analysis of commit statistics, contributors, and other metrics.
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-quick-stats MCP servershow top contributors in the current git repository"
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 Server for git-quick-stats
This folder contains a small MCP server that exposes git-quick-stats commands as MCP tools.
Setup
Install uv first (one-time):
curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH"cd mcp-server
uv venv .venv
uv sync --devOr using Make:
make installThis installs:
Runtime dependencies from
pyproject.tomlDevelopment tools (including Black) from the
devdependency group
Run
uv run -m src.serverThe server uses stdio transport, so configure your MCP client to launch this command.
On first tool execution, the server automatically downloads git-quick-stats
into .mcp-tools/git-quick-stats inside this project if the script is not
already present at project root.
To pin a specific upstream branch/tag/commit for downloads, set:
export GIT_QUICK_STATS_REF=<ref>Example MCP Client Config
{
"mcpServers": {
"git-quick-stats": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/git-quick-stats/mcp-server",
"-m",
"src.server"
]
}
}
}VS Code Config
Add one of the following entries to your VS Code MCP settings depending on your OS.
Windows (native Python/uv)
{
"mcpServers": {
"git-quick-stats": {
"command": "uv",
"args": [
"run",
"--directory",
"C:\\absolute\\path\\to\\git-quick-stats\\mcp-server",
"-m",
"src.server"
]
}
}
}Windows (WSL Ubuntu)
{
"mcpServers": {
"git-quick-stats": {
"command": "wsl.exe",
"args": [
"-d",
"Ubuntu",
"uv",
"run",
"--directory",
"/home/your-user/projects/git-quick-stats/mcp-server",
"-m",
"src.server"
]
}
}
}Linux
{
"mcpServers": {
"git-quick-stats": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/git-quick-stats/mcp-server",
"-m",
"src.server"
]
}
}
}macOS
{
"mcpServers": {
"git-quick-stats": {
"command": "uv",
"args": [
"run",
"--directory",
"/Users/your-user/path/to/git-quick-stats/mcp-server",
"-m",
"src.server"
]
}
}
}Make Targets
make help
make bootstrap-uv
make install
make run
make format
make format-checkDocker Compose
Run the MCP server with Docker Compose:
docker compose up --buildOr via Make:
make docker-up
make docker-logs
make docker-downUsage Notes
Set
repo_pathto the git repository you want to inspect.Some options need extra values, which should be passed using tool arguments:
authorfor options that need_GIT_AUTHORbranchfor options that need_GIT_BRANCHtagfor options that need_GIT_TAG
The
--new-contributorsoption prompts for a date in the shell script. Usestdin_inputwith one date line, for example:2025-01-01\n.
AI Output Example
Example tool call from an AI assistant:
{
"tool": "run_git_quick_stats",
"arguments": {
"option": "--new-contributors",
"repo_path": "/absolute/path/to/git-quick-stats",
"stdin_input": "2025-01-01\n"
}
}Example tool result:
{
"ok": true,
"exit_code": 0,
"stdout": "New contributors since 2025-01-01:\\n\\n 1 example.user@example.com\\n...",
"stderr": ""
}Example AI response to user:
New contributors report generated successfully using stdin date input (2025-01-01). I can also run the same report for another date range if you want.This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/git-quick-stats/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server