MCP Catalogs
Home

time vs django-firebase-mcp

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

time
by modelcontextprotocol
django-firebase-mcp
by raghavdasila
Stars★ 85,748★ 15
30d uses
Score7739
Official
Categories
ProductivityDeveloper ToolsCommunication
DatabaseCloud StorageDeveloper Tools
LanguageTypeScriptPython
Last committhis month11 mo ago

time · Summary

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

django-firebase-mcp · Summary

A Django-based MCP server providing 14 Firebase tools for AI agents to interact with Firestore, Auth, and Cloud Storage.

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-firebase-mcp · Use cases

  • Building AI agents that need to interact with Firebase databases and storage
  • Creating applications that require user authentication through Firebase
  • Developing prototypes with real backend services using MCP tools

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-firebase-mcp · Install

Installation

  1. Clone the repository:
git clone https://github.com/raghavdasila/django-firebase-mcp.git
cd django-firebase-mcp
  1. Install dependencies:
pip install -r requirements.txt
  1. Set up Firebase credentials:
  • Download service account key from Firebase Console
  • Save as credentials.json in project root
  1. Configure environment variables:

Create .env file with:

SERVICE_ACCOUNT_KEY_PATH=credentials.json
FIREBASE_STORAGE_BUCKET=your-project-id.appspot.com
MCP_TRANSPORT=http
MCP_HOST=127.0.0.1
MCP_PORT=8001
  1. Test with standalone agent:
python firebase_admin_mcp/standalone_firebase_agent.py

Claude Desktop Configuration

Add to Claude Desktop config.json:

"mcpServers": {
  "django-firebase-mcp": {
    "command": "python",
    "args": ["manage.py", "run_mcp"],
    "env": {
      "PYTHONPATH": "/path/to/django-firebase-mcp"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.