everything vs agent-security-scanner-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | agent-security-scanner-mcp by sinewaveai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 101 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
agent-security-scanner-mcp · Summary
MCP security scanner for AI coding agents with prompt injection protection, package hallucination detection, vulnerability scanning, and auto-fix capabilities.
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
agent-security-scanner-mcp · Use cases
- Scan AI-generated code for security vulnerabilities before committing to version control
- Detect prompt injection attacks when processing external user inputs
- Verify that dependency packages are legitimate and not AI-hallucinated
- Perform security audits on entire projects with A-F grading
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-everythingagent-security-scanner-mcp · Install
Install via npm:
npm install -g agent-security-scanner-mcpOr use the lightweight version:
npm install -g @prooflayer/security-scannerFor Claude Desktop integration, run:
npx agent-security-scanner-mcp init claude-codeThis will create a Claude Desktop configuration to enable the MCP server.