MCP Catalogs
Home

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
Score3677
Official
Categories
Developer ToolsAI / LLM ToolsDatabase
ProductivityDeveloper ToolsCommunication
LanguagePythonTypeScript
Last commit14 mo agothis 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-mcp

Configuration

  1. Add to INSTALLED_APPS:
# settings.py
INSTALLED_APPS = [
    # ... your other apps ...
    'django_mcp',
]
  1. Update ASGI configuration:
# asgi.py
from django_mcp.asgi import get_asgi_application

application = get_asgi_application()
  1. 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.