everything vs cve-search_mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | cve-search_mcp by roadwy | |
|---|---|---|
| Stars | ★ 85,748 | ★ 100 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 10 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
cve-search_mcp · Summary
An MCP server providing secure access to CVE-Search API for vulnerability information lookup.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingcve-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"
]
}
}
}