bluerock vs everything
Side-by-side comparison to help you pick between these two MCP servers.
bluerock by bluerock-io | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 29 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsMonitoring | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
bluerock · Summary
BlueRock provides runtime visibility for Python MCP servers with zero code changes, monitoring tool calls, sessions, imports and subprocess execution as structured NDJSON.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
bluerock · Use cases
- Security monitoring for MCP servers in production environments
- Audit tool usage and resource access patterns in AI applications
- Detect suspicious module imports or subprocess execution in Python MCP servers
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
bluerock · Install
# Install from PyPI
pip install bluerock[oss]
# Create configuration
echo '{"enable": true, "mcp": true}' > ~/.bluerock/bluerock-oss.json
# Run your Python script with BlueRock
python -m bluepython --oss your_script.pyFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"bluerock": {
"command": "python",
"args": ["-m", "bluepython", "--oss"]
}
}
}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