codebadger vs everything
Side-by-side comparison to help you pick between these two MCP servers.
codebadger by Lekssays | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 102 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsSecurityKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
codebadger · Summary
Containerized MCP server for static code analysis using Joern's CPG with multi-language support.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
codebadger · Use cases
- Security vulnerability detection in codebases
- Code analysis and understanding of large projects
- Integration with LLM assistants for program 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
codebadger · Install
Installation
- Install prerequisites:
```bash # Docker and Docker Compose docker --version docker-compose --version
# Python 3.10+ python --version ```
- Install Python dependencies:
``bash python -m venv venv pip install -r requirements.txt ``
- Start Joern Docker services:
``bash docker compose up -d ``
- Start the MCP server:
``bash python main.py ``
Claude Desktop Integration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"codebadger": {
"url": "http://localhost:4242/mcp",
"type": "http"
}
}
}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