MCP Catalogs
Home

time vs search_docs_mcp

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

time
by modelcontextprotocol
search_docs_mcp
by mostafa-ghaith
Stars★ 85,748★ 1
30d uses
Score7728
Official
Categories
ProductivityDeveloper ToolsCommunication
AI / LLM ToolsDeveloper ToolsSearch
LanguageTypeScriptPython
Last committhis month13 mo ago

time · Summary

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

search_docs_mcp · Summary

MCP server for semantic search across AI library documentation using Serper API

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

search_docs_mcp · Use cases

  • Search for the latest API documentation in supported AI libraries
  • Keep AI agents up-to-date with recent library features and changes
  • Quickly find specific implementation details from official docs

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

search_docs_mcp · Install

# Clone the repository
git clone https://github.com/mostafa-ghaith/search-docs-mcp.git
cd search-docs-mcp

# Create and activate virtual environment
python -m venv .venv
source .venv/bin/activate

# Install dependencies
pip install -e .

# Create .env file with API key
echo "SERPER_API_KEY=your_api_key_here" > .env

For Claude Desktop, add this to your config:

{
  "mcpServers": {
    "search-docs-mcp": {
      "command": "uv",
      "args": [
        "--directory",
        "/ABSOLUTE/PATH/TO/YOUR/search-docs-mcp",
        "run",
        "main.py"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.