MCP Catalogs
Home

time vs cve-mcp-server

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

time
by modelcontextprotocol
cve-mcp-server
by mukul975
Stars★ 85,748★ 566
30d uses
Score7753
Official
Categories
ProductivityDeveloper ToolsCommunication
SecurityDeveloper ToolsMonitoring
LanguageTypeScriptPython
Last committhis monththis month

time · Summary

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

cve-mcp-server · Summary

Production-grade MCP server providing Claude with 27 security intelligence tools across 21 APIs for CVE research and threat analysis.

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

cve-mcp-server · Use cases

  • Security analysts triaging vulnerabilities and prioritizing patching decisions
  • DevOps teams scanning dependencies and GitHub advisories for vulnerabilities
  • Threat hunters investigating IPs, domains, and malware hashes across threat intelligence platforms

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

cve-mcp-server · Install

Installation

Prerequisites

  • Python 3.10+ (3.11 or 3.12 recommended)
  • pip or uv package manager
  • Git for cloning the repository
  • A terminal with access to environment variables

Step-by-step setup

# 1. Clone the repository
git clone https://github.com/mukul975/cve-mcp-server.git
cd cve-mcp-server

# 2. Create and activate a virtual environment
python -m venv venv

# macOS / Linux:
source venv/bin/activate

# Windows (PowerShell):
.\venv\Scripts\Activate.ps1

# 3. Install dependencies
pip install -e .

# 4. Copy and configure environment variables
cp .env.example .env
# Edit .env with your API keys

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "cve": {
      "command": "python",
      "args": ["-m", "cve_mcp_server"],
      "env": {
        "CVE_MCP_SERVER_API_KEYS": "YOUR_API_KEYS_HERE"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.