time vs mcp-windbg
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-windbg by svnscha | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1,288 |
| 30d uses | — | — |
| Score | 77 | 55 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsSecurity |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-windbg · Summary
MCP server that bridges AI models with WinDbg for Windows crash dump analysis and remote debugging.
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-windbg · Use cases
- Automated Windows crash dump analysis through natural language queries
- Remote debugging assistance for live Windows applications
- Batch processing of multiple crash dumps to identify patterns
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-windbg · Install
Installation
- Install Debugging Tools for Windows or WinDbg from Microsoft Store
- Install Python 3.10 or higher
- Install the MCP server:
pip install mcp-windbgClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp_windbg": {
"command": "python",
"args": ["-m", "mcp_windbg"],
"env": {
"_NT_SYMBOL_PATH": "SRV*C:\\Symbols*https://msdl.microsoft.com/download/symbols"
}
}
}
}