1. Conduid
  2. Developer Tools
  3. Git Mob
MCP server · Developer Tools

Git Mob

Model Context Protocol (MCP) server for git-mob CLI app

Unclaimed MIT last commit 9 months ago devtools
51Fair

Scored yesterday · breakdown

About Git Mob

Git Mob is an MCP server published by Mubashwer in the Developer Tools category: model Context Protocol (MCP) server for git-mob CLI app. It has been installed 0 times through Conduid.

Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx git-mob-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Git Mob

Powered by Claude · Grounded in docs

I know everything about Git Mob. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v1.0.13v1.0.13 · 18 Jun 2025[1.0.13](https://github.com/Mubashwer/git-mob-mcp-server/compare/v1.0.12...v1.0.13) (2025-06-18) Bug Fixes rename setup_git_mob_globally tool to setup_git_mob…
v1.0.12v1.0.12 · 7 Jun 2025[1.0.12](https://github.com/Mubashwer/git-mob-mcp-server/compare/v1.0.11...v1.0.12) (2025-06-07) Bug Fixes rename git_mob_help tool to get_git_mob_help tool…
v1.0.11v1.0.11 · 6 Jun 2025[1.0.11](https://github.com/Mubashwer/git-mob-mcp-server/compare/v1.0.10...v1.0.11) (2025-06-06) Bug Fixes rename resources and tool to clarify CLI scope…
v1.0.10v1.0.10 · 3 Jun 2025[1.0.10](https://github.com/Mubashwer/git-mob-mcp-server/compare/v1.0.9...v1.0.10) (2025-06-03) Bug Fixes ensure results are arrays for applicable tools…
v1.0.9v1.0.9 · 3 Jun 2025[1.0.9](https://github.com/Mubashwer/git-mob-mcp-server/compare/v1.0.8...v1.0.9) (2025-06-03) Bug Fixes remove resources - team_members. mob_session_coauthors and mob_session_coauthor_trailers…

README

Git Mob MCP Server

NPM Version NPM Downloads CI Release codecov

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

Features

  • Setup git mob CLI
  • Add / delete / list team members
  • Choose team members for pairing / mobbing session
  • Automatic appending of Co-authored-by in for co-authors in commit messages during pairing / mobbing session

Prerequisites

System Requirements

  • Node.js: Version 18 or higher
  • git: Git v2.32 or later must be installed and configured
  • git-mob CLI: git-mob CLI app must be installed

API

Resources

  • 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.

Tools

  • 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.

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

NPX

{
  "mcpServers": {
    "git-mob": {
      "command": "npx",
      "args": ["-y", "git-mob-mcp-server"]
    }
  }
}

Usage with VS Code

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.

NPX

{
  "mcp": {
    "servers": {
      "git-mob": {
        "command": "npx",
        "args": ["-y", "git-mob-mcp-server"]
      }
    }
  }
}

Setup

Run the setup_git_mob MCP tool once to setup git-mob before using other tools

Local Development

For local development and testing of the MCP server:

  1. Clone the repository:

    git clone https://github.com/Mubashwer/git-mob-mcp-server.git
    cd git-mob-mcp-server
    
  2. Install dependencies:

    npm install
    
  3. Start development server:

    npm start
    

    This command will:

    • Build the TypeScript source code in watch mode (automatically rebuilds on file changes)
    • Start the MCP Inspector for testing and debugging the server locally

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.

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.

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Git Mob

How do I install Git Mob?

Run npx git-mob-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Git Mob safe to use with an AI agent?

Its trust score is 51 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Git Mob still maintained?

The last commit was 9 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.