dap_mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
dap_mcp by KashunCheng | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 40 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 8 mo ago | this month |
dap_mcp · Summary
DAP-MCP enables LLM interaction with debuggers through standardized MCP protocol, offering debugging tools like breakpoints and execution control.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
dap_mcp · Use cases
- AI-assisted debugging where language models can set breakpoints and control execution flow
- Automated debugging workflows triggered by LLMs based on code analysis
- Remote debugging through LLM interfaces when direct debugger access is limited
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
dap_mcp · Install
Installation
- Install the dap-mcp package:
``bash pip install dap-mcp ``
- Create a configuration file (e.g.,
config.json) with your debugger settings
- Run the server:
``bash python -m dap_mcp --config config.json # or with uv uvx dap-mcp@latest --config config.json ``
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"dap-debugger": {
"command": "python",
"args": ["-m", "dap_mcp"],
"env": {
"DAP_MCP_CONFIG": "/path/to/config.json"
}
}
}
}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"]
}
}
}