MCP Catalogs
Home

time vs mcp-server-qdrant

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

time
by modelcontextprotocol
mcp-server-qdrant
by qdrant
Stars★ 85,748★ 1,397
30d uses
Score7755
Official
Categories
ProductivityDeveloper ToolsCommunication
DatabaseAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last committhis month1 mo ago

time · Summary

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

mcp-server-qdrant · Summary

Official Qdrant MCP server for semantic memory storage and retrieval using vector embeddings.

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

mcp-server-qdrant · Use cases

  • Building AI applications with long-term memory capabilities
  • Code search and retrieval for development environments
  • Enhancing LLM applications with vector-based semantic search

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"]
    }
  }
}

mcp-server-qdrant · Install

Installation Options

Using uvx
QDRANT_URL="http://localhost:6333" \
COLLECTION_NAME="my-collection" \
EMBEDDING_MODEL="sentence-transformers/all-MiniLM-L6-v2" \
uvx mcp-server-qdrant
Using Docker
docker build -t mcp-server-qdrant .
docker run -p 8000:8000 \
  -e FASTMCP_SERVER_HOST="0.0.0.0" \
  -e QDRANT_URL="http://your-qdrant-server:6333" \
  -e QDRANT_API_KEY="your-api-key" \
  -e COLLECTION_NAME="your-collection" \
  mcp-server-qdrant
Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "qdrant": {
    "command": "uvx",
    "args": ["mcp-server-qdrant"],
    "env": {
      "QDRANT_URL": "https://xyz-example.eu-central.aws.cloud.qdrant.io:6333",
      "QDRANT_API_KEY": "your_api_key",
      "COLLECTION_NAME": "your-collection-name",
      "EMBEDDING_MODEL": "sentence-transformers/all-MiniLM-L6-v2"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.