time vs codeTree
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | codeTree by ThinkyMiner | |
|---|---|---|
| Stars | ★ 85,748 | ★ 25 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsKnowledge Graph |
| 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.
codeTree · Summary
MCP server with 23 tools for structured code understanding via tree-sitter across 10 languages.
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
codeTree · Use cases
- Code analysis and refactoring assistance
- Documentation generation suggestions
- Impact analysis before making code changes
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"]
}
}
}codeTree · Install
Installation
**Prerequisite:** Install [uv](https://docs.astral.sh/uv/getting-started/installation/) if you don't have it (curl -LsSf https://astral.sh/uv/install.sh | sh).
Then cd into any project and run:
claude mcp add codetree -- uvx --from mcp-server-codetree codetree --root .Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"codetree": {
"command": "uvx",
"args": ["--from", "mcp-server-codetree", "codetree", "--root", "/path/to/your/project"]
}
}
}