MCP Catalogs
Home

time vs MySearch-Proxy

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

time
by modelcontextprotocol
MySearch-Proxy
by skernelx
Stars★ 85,748★ 120
30d uses
Score7747
Official
Categories
ProductivityDeveloper ToolsCommunication
SearchAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last committhis month2 mo ago

time · Summary

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

MySearch-Proxy · Summary

Unified search MCP server that proxies requests to Tavily, Firecrawl, Exa and Social with a central management layer.

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

MySearch-Proxy · Use cases

  • Local AI assistant with unified search capabilities
  • OpenClaw search skill deployment
  • Team-based shared search backend with token management

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

MySearch-Proxy · Install

Installation

Option 1: Direct MCP Installation

cd /path/to/MySearch-Proxy
python3 -m venv venv
source venv/bin/activate

# Configure environment variables
echo 'MYSEARCH_PROXY_BASE_URL=https://your-mysearch-proxy.example.com' >> .env
echo 'MYSEARCH_PROXY_API_KEY=mysp-...' >> .env

./install.sh

Option 2: Deploy Proxy First

mkdir -p mysearch-proxy-data
docker run -d \
  --name mysearch-proxy \
  --restart unless-stopped \
  -p 9874:9874 \
  -e ADMIN_PASSWORD=change-me \
  -v $(pwd)/mysearch-proxy-data:/app/data \
  skernelx/mysearch-proxy:latest

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mysearch": {
      "command": "python",
      "args": ["-m", "mysearch.mcp_server"],
      "env": {
        "MYSEARCH_PROXY_BASE_URL": "https://your-mysearch-proxy.example.com",
        "MYSEARCH_PROXY_API_KEY": "mysp-..."
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.