
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
git-mcp-wizard
Advanced tools
Git MCP Wizard - A comprehensive Model Context Protocol server for Git operations
A comprehensive, type-safe Model Context Protocol (MCP) server for Git operations with enhanced safety features, modular architecture, and extensive tool coverage.
This enhanced version provides significant improvements over the original mcp-server-git:
| Feature | Original | Enhanced |
|---|---|---|
| Language | Python | TypeScript |
| Number of Tools | 12 | 40+ |
| Type Safety | No | Yes (Zod) |
| Session Management | No | Yes |
| Security Controls | Basic | Advanced |
| Documentation | README only | Full docs |
| Testing | None | Jest |
| Architecture | Single file | Modular |
| Error Handling | Basic | Comprehensive |
| Logging | Basic | Structured (Winston) |
npm install -g git-mcp-wizard
git clone https://github.com/jevenson76/git-mcp-wizard.git
cd git-mcp-wizard
npm install
npm run build
Add to your Claude Desktop configuration:
{
"mcpServers": {
"git-wizard": {
"command": "npx",
"args": ["git-mcp-wizard"],
"env": {
"LOG_LEVEL": "info"
}
}
}
}
See .env.example for all configuration options:
git_init - Initialize repositoriesgit_clone - Clone repositoriesgit_set_working_dir - Set session directorygit_clear_working_dir - Clear session directorygit_status - Working tree statusgit_add - Stage changesgit_commit - Commit changesgit_reset - Reset changesgit_clean - Remove untracked filesgit_branch - Manage branchesgit_checkout - Switch branchesgit_merge - Merge branchesgit_rebase - Rebase branchesgit_cherry_pick - Apply commitsgit_remote - Manage remotesgit_fetch - Fetch updatesgit_pull - Pull changesgit_push - Push changesgit_log - View historygit_diff - Show differencesgit_show - Show objectsgit_blame - Show authorshipgit_stash - Stash changesgit_tag - Manage tagsgit_worktree - Multiple worktreesgit_config - Configurationgit_rev_parse - Parse revisionsSee API Documentation for detailed usage of each tool.
See Security Guide for details.
src/
├── tools/ # Tool implementations
│ ├── base.ts # Base tool class
│ ├── repository/
│ ├── operations/
│ ├── branching/
│ ├── remote/
│ ├── history/
│ └── advanced/
├── utils/ # Utilities
├── config/ # Configuration
└── types/ # TypeScript types
npm run dev # Development mode
npm run build # Build project
npm run test # Run tests
npm run lint # Lint code
npm run format # Format code
npm run inspector # MCP inspector
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
MIT License - see LICENSE for details.
FAQs
Git MCP Wizard - A comprehensive Model Context Protocol server for Git operations
The npm package git-mcp-wizard receives a total of 1 weekly downloads. As such, git-mcp-wizard popularity was classified as not popular.
We found that git-mcp-wizard demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.