django-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
django-mcp by hyperb1iss | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsDatabase | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 14 mo ago | this month |
django-mcp · Summary
A Python package that bridges Django apps with AI assistants using MCP through decorators.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
django-mcp · Use cases
- Allow AI assistants to interact with and query Django application data
- Expose Django admin functionality to AI assistants for automated tasks
- Create AI-powered interfaces for exploring and managing Django application content
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-mcp · Install
Installation
# Install with pip
pip install django-mcp
# Or with UV
uv add django-mcpConfiguration
- Add to INSTALLED_APPS:
# settings.py
INSTALLED_APPS = [
# ... your other apps ...
'django_mcp',
]- Update ASGI configuration:
# asgi.py
from django_mcp.asgi import get_asgi_application
application = get_asgi_application()- Include MCP URLs:
# urls.py
from django.urls import path, include
urlpatterns = [
# ... your other URLs ...
path('', include('django_mcp.urls')),
]Claude Desktop Configuration
Add to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"django-mcp": {
"command": "python",
"args": ["-m", "django_mcp.server"],
"env": {
"DJANGO_SETTINGS_MODULE": "your_project.settings"
}
}
}
}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"]
}
}
}