git-control-mcp

haroldcampbell/git-control-mcp
★ 0 stars Python Code/Dev Tools Updated today
An MCP server and related tools to manage git commits.
View on GitHub → 🔍 Audit Wallet Slippage →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "git-control-mcp": {
      "command": "uvx",
      "args": [
        "git-control-mcp"
      ]
    }
  }
}

Or install with pip: pip install git-control-mcp

README Excerpt

This project is a learning sandbox for a git MCP server. ``` . ├── src │ ├── git_control │ │ ├── tools.py # Git MCP tool implementations │ │ └── server.py # FastMCP wiring and entrypoint ``` Run from the project root so `uv` can resolve `pyproject.toml` and `uv.lock`. ``` uv sync PYTHONPATH=src uv run python -m git_control.server