MCP Catalogs
Home

drf-mcp-docs vs time

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

drf-mcp-docs
by Abdulkhalek-1
time
by modelcontextprotocol
Stars★ 17★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
ProductivityDeveloper ToolsCommunication
LanguagePythonTypeScript
Last commit2 mo agothis month

drf-mcp-docs · Summary

An MCP server that exposes Django REST Framework API documentation to AI coding agents for frontend development assistance.

time · Summary

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

drf-mcp-docs · Use cases

  • AI assistants generating React/Vue/Angular hooks to consume your DRF API
  • Automatic generation of typed API client code in TypeScript or Python
  • Documentation exploration where AI can query endpoint details and examples
  • Creating integration tutorials and guides with automatically generated code snippets

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

drf-mcp-docs · Install

Installation

pip install drf-mcp-docs
# With specific schema generator:
pip install drf-mcp-docs[spectacular]   # recommended
pip install drf-mcp-docs[yasg]

Configuration

Add to your Django settings:

INSTALLED_APPS = [
    # ...
    'rest_framework',
    'drf_mcp_docs',
]

Running

**stdio transport** (for local AI tools):

python manage.py runmcpserver --transport stdio

**Streamable HTTP transport** (for network access):

python manage.py runmcpserver --transport streamable-http --host 0.0.0.0 --port 8100

Claude Desktop Configuration

Add to ~/.claude.json:

{
  "mcpServers": {
    "my-api-docs": {
      "command": "python",
      "args": ["manage.py", "runmcpserver", "--transport", "stdio"],
      "cwd": "/path/to/your/django/project"
    }
  }
}

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.