env-doctor vs everything
Side-by-side comparison to help you pick between these two MCP servers.
env-doctor by mitulgarg | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 142 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsMonitoringAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
env-doctor · Summary
Env-Doctor MCP server provides AI assistants with tools to diagnose and fix CUDA/GPU environment compatibility issues.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
env-doctor · Use cases
- AI assistants diagnose CUDA compatibility issues before installing PyTorch/TensorFlow
- Validate Dockerfiles for GPU configuration errors before building
- Check if specific AI models will fit on available GPU hardware
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
env-doctor · Install
Installation
pip install env-doctorMCP Server Configuration
Add to Claude Desktop config (~/.config/Claude/claude_desktop_config.json):
{
"mcpServers": {
"env-doctor": {
"command": "env-doctor-mcp"
}
}
}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