time vs django-ai-boost
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | django-ai-boost by vintasoftware | |
|---|---|---|
| Stars | ★ 85,748 | ★ 88 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsDatabase |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
django-ai-boost · Summary
Django AI Boost is a production-ready MCP server for Django application introspection and analysis.
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
django-ai-boost · Use cases
- AI assistants analyzing Django project structure and relationships
- Developers querying Django settings and configurations
- Teams inspecting database schema and models through AI interfaces
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"]
}
}
}django-ai-boost · Install
Installation
# Using uv (recommended)
uv pip install django-ai-boost
# Or with pip
pip install django-ai-boostClaude Desktop Configuration
Add to your Claude Desktop configuration:
- **macOS**:
~/Library/Application Support/Claude/claude_desktop_config.json - **Windows**:
%APPDATA%\Claude\claude_desktop_config.json - **Linux**:
~/.config/claude/claude_desktop_config.json
{
"mcpServers": {
"django": {
"command": "django-ai-boost",
"args": ["--settings", "myproject.settings"],
"env": {
"DJANGO_SETTINGS_MODULE": "myproject.settings"
}
}
}
}