comfy-pilot vs everything
Side-by-side comparison to help you pick between these two MCP servers.
comfy-pilot by ConstantineB6 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 186 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 3 mo ago | this month |
comfy-pilot · Summary
MCP server + embedded terminal allowing Claude Code to view, edit, and run ComfyUI workflows programmatically.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
comfy-pilot · Use cases
- Automatically build complex ComfyUI workflows from simple descriptions
- Modify existing workflows based on visual feedback from generated images
- Manage models and custom nodes through natural language commands
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
comfy-pilot · Install
Installation
**CLI (Recommended):**
comfy node install comfy-pilot**ComfyUI Manager:**
- Open ComfyUI
- Click **Manager** → **Install Custom Nodes**
- Search for "Comfy Pilot"
- Click **Install**
- Restart ComfyUI
**Git Clone:**
cd ~/Documents/ComfyUI/custom_nodes && git clone https://github.com/ConstantineB6/comfy-pilot.gitThe MCP server is automatically configured for Claude Code. Add to ~/.claude.json if needed:
{
"mcpServers": {
"comfyui": {
"command": "python3",
"args": ["/path/to/comfy-pilot/mcp_server.py"]
}
}
}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