claude-debugs-for-you vs time
并排对比,帮你在这两个 MCP server 之间做选择。
claude-debugs-for-you by jasonjmcghee | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 510 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 5 个月前 | 本月 |
claude-debugs-for-you · 概述
一个MCP服务器,允许Claude或任何LLM通过VS Code交互式调试任何语言的代码。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
claude-debugs-for-you · 使用场景
- 当人类直觉无法解决时调试复杂代码
- 自动化处理重复性问题的调试过程
- 与能够执行代码的AI助手进行结对编程
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
claude-debugs-for-you · 安装
安装
- 从[发布版](https://github.com/jasonjmcghee/claude-debugs-for-you/releases/)或[VS Code市场](https://marketplace.visualstudio.com/items?itemName=JasonMcGhee.claude-debugs-for-you)下载扩展
- 在VS Code中安装扩展
- 配置MCP客户端:
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 · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}