by Mubashwer
Enables automatic management of co‑authors for git‑mob sessions, providing tools to set up, add, list, and apply Co‑authored‑by trailers to commits.
Git Mob MCP Server provides a Model Context Protocol (MCP) endpoint that interfaces with the git‑mob
CLI. It lets developers store, select, and apply co‑author information automatically during pair or mob programming sessions, eliminating manual editing of commit messages.
{
"mcpServers": {
"git-mob": {
"command": "npx",
"args": ["-y", "git-mob-mcp-server"]
}
}
}
setup_git_mob
tool once to install the git‑mob
CLI globally.add_team_member
, list_team_members
, set_mob_session_coauthors
, etc.) through an MCP‑compatible client (e.g., Claude Desktop, VS Code) to manage co‑authors and sessions.Co‑authored‑by
trailers based on the active session.git‑mob
CLI globally or locally.Co‑authored‑by
lines into commit messages.npx -y git-mob-mcp-server
. No global install required.npm start
after cloning the repo; it launches the MCP Inspector for interactive testing.clear_mob_session
tool via the MCP client.Node.js server implementing Model Context Protocol (MCP) for git mob
CLI app
You can attribute a git commit to more than one author by adding one or more Co-authored-by trailers to the commit's message. Co-authored commits are visible on GitHub. For more information, see here.
This MCP Server will help you add them automatically and also help you store and manage co-authors for pair/mob programming sessions.
Built using @modelcontextprotocol/sdk
git_mob_cli_help
: General help and usage information for the Git Mob CLI.git_mob_cli_version
: The installed version of the Git Mob CLI.setup_git_mob
: Sets up git-mob globally for the user.setup_git_mob_locally
: Sets up git-mob locally for the current repository when it overrides core.hooksPath
git configuration variable (e.g when using husky).add_team_member
: Adds a new team member using their key, name, and email.delete_team_member
: Deletes a team member by their key.list_team_members
: Lists all team members that have been added to Git Mob.set_mob_session_coauthors
: Sets the active pairing or mob session by specifying the keys of the team members to include as coauthors.clear_mob_session
: Clears the active mob or pairing session.list_mob_session_coauthors
: Lists all coauthors currently included in the active mob or pairing session.list_mob_session_coauthor_trailers
: Lists the git Co-authored-by trailers for the coauthors currently included in the active mob or pairing session.get_git_mob_cli_help
: Displays general help and usage information for the Git Mob CLI.Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"git-mob": {
"command": "npx",
"args": ["-y", "git-mob-mcp-server"]
}
}
}
For installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P
and typing Preferences: Open Settings (JSON)
.
Optionally, you can add it to a file called .vscode/mcp.json
in your workspace. This will allow you to share the configuration with others.
Note that the
mcp
key is not needed in the.vscode/mcp.json
file.
{
"mcp": {
"servers": {
"git-mob": {
"command": "npx",
"args": ["-y", "git-mob-mcp-server"]
}
}
}
}
Run the setup_git_mob
MCP tool once to setup git-mob before using other tools
For local development and testing of the MCP server:
Clone the repository:
git clone https://github.com/Mubashwer/git-mob-mcp-server.git
cd git-mob-mcp-server
Install dependencies:
npm install
Start development server:
npm start
This command will:
The MCP Inspector will be available at the URL shown in the terminal output, allowing you to test the server's tools and resources interactively.
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.
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "git-mob": { "command": "npx", "args": [ "-y", "git-mob-mcp-server" ], "env": {} } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.