commit-brief
Provides tools for listing commits and generating standup summaries from a repository's git history.
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., "@commit-briefsummarize yesterday's commits in this repo"
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.
commit-brief
Turn yesterday's git log into a one-paragraph standup summary.
commit-brief reads your git history (commit messages, authors, branch refs,
per-file change stats — never diffs) and asks an LLM for a terse standup
digest. One command, two interfaces:
commit-brief— standup digest at your terminal.commit-brief mcp— MCP server, so your agents (Claude Code, Codex, ...) can call the same core as a tool.
Install
Requires Python 3.11+ and uv (or pipx).
# global install, any machine — CLI only:
uv tool install git+https://github.com/ahm3d-karim/commit-brief
# with the MCP server (needs the mcp dependency):
uv tool install "git+https://github.com/ahm3d-karim/commit-brief[mcp]"
# from a local checkout instead:
uv tool install ".[mcp]"
# pipx equivalent:
pipx install "git+https://github.com/ahm3d-karim/commit-brief[mcp]"Installs one command: commit-brief. Then set your API key:
export ANTHROPIC_API_KEY=sk-ant-... # or add it to your shell profileModel default: claude-sonnet-4-20250514 (override with COMMIT_BRIEF_MODEL).
Related MCP server: mcp-cronos
CLI
# from inside any repo — yesterday's commits, one paragraph
commit-brief
# other repos / windows / filters
commit-brief --repo ../other-repo --since '3 days ago'
commit-brief --since '7 days ago' --author 'Alice'
commit-brief --author 'Alice' --author 'Bob' --bullets
# no API key? see exactly what the LLM would receive
commit-brief --dry-run
# raw structured commits (hash, author, subject, body, refs, per-file stats)
commit-brief --json--since/--until accept anything git accepts: yesterday, 3 days ago,
2026-08-01. --author is repeatable (OR). Exit codes: 0 ok / no commits,
2 git or API error.
MCP server
The server exposes the same core as two tools: summarize_standup and
list_commits (params: repo, since, until, author, bullets,
dry_run — dry_run returns the prompt at zero API cost).
Run it (needs the [mcp] extra installed):
commit-brief mcp
# from a source checkout: uv run --extra mcp python -m commit_brief.mcp_serverRegister with Claude Code:
claude mcp add commit-brief -- commit-brief mcpThen just ask: "summarize yesterday's commits in this repo" or "what did each dev ship last week?" — the agent calls the tool with the right args.
Self-test the server end to end (spawns it, lists tools, exercises both
tools against a repo — pass a path or set CBR_TEST_REPO; defaults to the
current directory):
commit-brief mcp-test
commit-brief mcp-test /path/to/repoDesign notes
Messages + stats, never diffs. The LLM sees subjects, bodies, authors, branch refs, and per-file
(+a -d)counts. Cheap, and code never leaves the repo.Git subprocess hygiene: git is spawned with
stdin=DEVNULLandGIT_PAGER=cat. Without this, a git spawned inside an MCP stdio server on Windows/MSYS2 gets SIGTERM'd (rc 143) because it inherits the protocol pipe / console state. This is the fix — don't remove it.mcpis pinned<2because 2.x replaced FastMCP with a new API; the stdio protocol is identical, so 1.x keeps the server code simple.
Testing
uv run --extra test pytest # core + CLI suite (unit tests, no API needed)
commit-brief mcp-test # end-to-end MCP smoke test (spawns the server)CI runs the pytest suite on every push (GitHub Actions, .github/workflows/ci.yml).
The MCP smoke test is intentionally excluded from pytest — it spawns servers
and exits the process — so it stays a self-serve command.
Project layout
commit_brief/core.py git log parsing + prompt building + LLM call
commit_brief/cli.py one command: standup (default) + mcp / mcp-test
commit_brief/mcp_server.py FastMCP wrapper (2 tools)
commit_brief/mcp_test.py end-to-end MCP smoke test (used by mcp-test)
scripts/test_mcp_client.py thin shim over commit_brief.mcp_testThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-quality-maintenanceA lightweight MCP server that enables AI assistants to manage local Git repositories by executing commands like status, add, and commit. It streamlines development workflows by providing repository context and diffs directly to the assistant.
- AlicenseAqualityBmaintenanceMCP server for structured daily work diary management, enabling entries, standup summaries, weekly reports, full-text search, and automatic git commits.14MIT
- Flicense-qualityCmaintenanceA local-only MCP server that exposes git repository history, diffs, and status as tools for LLM clients, working entirely against a local git repo on disk.
- -license-quality-maintenanceEnables generating AI-powered standups from git activity, with risk flags and markdown digests, via MCP tools.
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
An MCP server that gives your AI access to the source code and docs of all public github repos
MCP server for generating rough-draft project plans from natural-language prompts.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/ahm3d-karim/commit-brief'
If you have feedback or need assistance with the MCP directory API, please join our Discord server