git-mcp-server vs time
Side-by-side comparison to help you pick between these two MCP servers.
git-mcp-server by cyanheads | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 215 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsFile System | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
git-mcp-server · Summary
A comprehensive MCP server that provides AI agents with 28 Git operations including clone, commit, branch management, and more.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
git-mcp-server · Use cases
- AI-assisted code review and commit management
- Automated repository maintenance and version control
- Integration of Git operations into AI agent workflows
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
git-mcp-server · Install
Installation
The git-mcp-server can be installed and run with either Node.js or Bun:
# Node.js
npx @cyanheads/git-mcp-server@latest
# Bun
bunx @cyanheads/git-mcp-server@latestClaude Desktop Configuration
Add the following to your Claude Desktop config file (claude_desktop_config.json):
{
"mcpServers": {
"git-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["@cyanheads/git-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info",
"GIT_BASE_DIR": "~/Developer/",
"LOGS_DIR": "~/Developer/logs/git-mcp-server/",
"GIT_USERNAME": "your-username",
"GIT_EMAIL": "your-email",
"GIT_SIGN_COMMITS": "true"
}
}
}
}For Bun users, replace the command with bunx.
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}