time vs cve-search_mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | cve-search_mcp by roadwy | |
|---|---|---|
| Stars | ★ 85,748 | ★ 100 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 10 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
cve-search_mcp · Summary
An MCP server providing secure access to CVE-Search API for vulnerability information lookup.
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-search_mcp · Use cases
- Security analysts can quickly retrieve vulnerability information by CVE ID during incident response
- AI assistants can access vendor-specific vulnerability databases to answer security questions
- DevSecOps teams can integrate vulnerability data into automated security checks
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-search_mcp · Install
Installation
- Clone the repository:
git clone https://github.com/roadwy/cve-search_mcp.git
cd cve-search_mcp- Install dependencies:
uv sync- Add to your MCP client configuration:
{
"cve-search_mcp": {
"command": "uv",
"args": [
"--directory",
"YOUR_CVE_SEARCH_MCP_DIR_PATH",
"run",
"main.py"
],
"disabled": false,
"autoApprove": []
}
}For Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"cve-search": {
"command": "uv",
"args": [
"--directory",
"/path/to/cve-search_mcp",
"run",
"main.py"
]
}
}
}