MCP Catalogs
Home

ultimate_mcp_server vs cve-search_mcp

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

ultimate_mcp_server
by Dicklesworthstone
cve-search_mcp
by roadwy
Stars★ 149★ 100
30d uses
Score8544
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
SecurityDeveloper ToolsAI / LLM Tools
LanguagePythonPython
Last commit2 mo ago10 mo ago

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

cve-search_mcp · Summary

An MCP server providing secure access to CVE-Search API for vulnerability information lookup.

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

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

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

cve-search_mcp · Install

Installation

  1. Clone the repository:
git clone https://github.com/roadwy/cve-search_mcp.git
cd cve-search_mcp
  1. Install dependencies:
uv sync
  1. 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"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.