everything vs contrastapi
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | contrastapi by UPinar | |
|---|---|---|
| Stars | ★ 85,748 | ★ 24 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
contrastapi · Summary
Security intelligence MCP server with 53 tools for CVE/KEV, threat intelligence, web scanning and code security analysis.
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
contrastapi · Use cases
- Security analysts investigating vulnerabilities across multiple CVE databases and KEV listings
- AI agents performing comprehensive domain and web application security assessments
- Developers integrating threat intelligence directly into CI/CD pipelines for code security scanning
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-everythingcontrastapi · Install
Install ContrastAPI MCP Server
Method 1: MCP Configuration
Add to your MCP configuration:
{
"mcpServers": {
"contrastapi": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://api.contrastcyber.com/mcp/"]
}
}
}Method 2: Python SDK
pip install contrastapi # Python 3.10+Method 3: Node.js SDK
npm install contrastapi # Node 14+