time vs mcp_server_gdb
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp_server_gdb by pansila | |
|---|---|---|
| Stars | ★ 85,748 | ★ 63 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | Rust |
| Last commit | this month | 8 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp_server_gdb · Summary
MCP server that exposes GDB debugging capabilities to AI assistants through standardized tools.
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
mcp_server_gdb · Use cases
- AI-assisted debugging of applications with natural language commands
- Automated regression testing through programmatic control of debugging sessions
- Remote debugging setup with AI providing guidance on complex debugging scenarios
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"]
}
}
}mcp_server_gdb · Install
Installation
**Pre-built Binaries:** Download from the releases page for your platform.
**Build from Source:**
cargo build --release
cargo run**Using Nix:**
# Run locally
nix run .
# Run from GitHub
nix run "git+https://github.com/pansila/mcp_server_gdb.git" -- --help**Claude Desktop Configuration:** Add to claude_desktop_config.json:
{
"mcpServers": {
"gdb": {
"command": "path/to/mcp-server-gdb",
"args": []
}
}
}