MCP Catalogs
Home

django-mcp-server vs time

Side-by-side comparison to help you pick between these two MCP servers.

django-mcp-server
by gts360
time
by modelcontextprotocol
Stars★ 332★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsAI / LLM ToolsDatabase
ProductivityDeveloper ToolsCommunication
LanguagePythonTypeScript
Last commit2 mo agothis month

django-mcp-server · Summary

Django MCP Server enables AI agents to interact with Django applications through Model Context Protocol.

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

django-mcp-server · Use cases

  • Enabling Claude AI or other LLM agents to query and manipulate Django application data
  • Converting existing Django Rest Framework APIs into MCP tools for AI agent consumption
  • Building AI-powered interfaces for Django applications with custom toolsets

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-server · Install

Installation

  1. Install the package:
pip install django-mcp-server
  1. Add to Django settings:
INSTALLED_APPS = [
    # your apps...
    'mcp_server',
]
  1. Add URL patterns:
from django.urls import path, include

urlpatterns = [
    # your urls...
    path("", include('mcp_server.urls')),
]
  1. Define MCP tools in mcp.py:
from mcp_server import ModelQueryToolset
from .models import *

class BirdQueryTool(ModelQueryToolset):
    model = Bird

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "django_mcp": {
      "command": "/path/to/interpreter/python",
      "args": [
        "/path/to/your/project/manage.py",
        "stdio_server"
      ]
    }
  }
}

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.