MCP Catalogs
Home

time vs mongodb-mcp-server

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

time
by modelcontextprotocol
mongodb-mcp-server
by mongodb-js
Stars★ 85,748★ 1,023
30d uses
Score7755
Official
Categories
ProductivityDeveloper ToolsCommunication
DatabaseDeveloper ToolsCloud Storage
LanguageTypeScriptTypeScript
Last committhis monththis month

time · Summary

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

mongodb-mcp-server · Summary

MongoDB MCP Server connects to MongoDB databases and Atlas clusters, offering tools for database operations and Atlas management.

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

mongodb-mcp-server · Use cases

  • AI agents querying and analyzing MongoDB databases without direct database access
  • Automating MongoDB Atlas cluster management through MCP-enabled clients
  • Building RAG applications that can access MongoDB data as contextual resources

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

mongodb-mcp-server · Install

Installation

Via NPM (for Claude Desktop)

{
  "mcpServers": {
    "MongoDB": {
      "command": "npx",
      "args": ["-y", "mongodb-mcp-server@latest", "--readOnly"],
      "env": {
        "MDB_MCP_CONNECTION_STRING": "mongodb://localhost:27017/myDatabase"
      }
    }
  }
}

Via Docker

{
  "mcpServers": {
    "MongoDB": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-e",
        "MDB_MCP_READ_ONLY=true",
        "-i",
        "mongodb/mongodb-mcp-server:latest"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.