mcpsec vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcpsec by manthanghasadiya | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 22 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
mcpsec · Summary
A security scanner and protocol fuzzer for MCP servers that discovers runtime vulnerabilities through dynamic testing.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcpsec · Use cases
- Security auditing of MCP servers before deployment
- Continuous integration security checks for MCP-based applications
- Fuzz testing to discover zero-day vulnerabilities in MCP implementations
- Compliance testing for MCP server security standards
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
mcpsec · Install
# Basic installation
pip install mcpsec
# With AI-powered features
pip install mcpsec[ai]
# Via Nix
nix-shell # basic
nix-shell --arg withAll true # all optional depsClaude Desktop Integration
Add to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"mcpsec": {
"command": "python",
"args": ["-m", "mcpsec", "stdio"]
}
}
}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-everything