claude-debugs-for-you vs time
Side-by-side comparison to help you pick between these two MCP servers.
claude-debugs-for-you by jasonjmcghee | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 510 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Tools | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 5 mo ago | this month |
claude-debugs-for-you · Summary
An MCP server enabling Claude or any LLM to interactively debug code in any language through VS Code.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
claude-debugs-for-you · Use cases
- Debugging complex code when human intuition fails
- Automating the debugging process for repetitive issues
- Pair programming with an AI assistant that can execute code
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
claude-debugs-for-you · Install
Installation
- Download the extension from [releases](https://github.com/jasonjmcghee/claude-debugs-for-you/releases/) or [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=JasonMcGhee.claude-debugs-for-you)
- Install the extension in VS Code
- Configure MCP client:
Claude Desktop
{
"mcpServers": {
"debug": {
"command": "node",
"args": [
"/path/to/mcp-debug.js"
]
}
}
}Continue/Cursor
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "node",
"args": [
"/path/to/mcp-debug.js"
]
}
}
]
}
}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"]
}
}
}