MCP Catalogs
Home

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
Score4877
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit3 mo agothis 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:**

  1. Open ComfyUI
  2. Click **Manager** → **Install Custom Nodes**
  3. Search for "Comfy Pilot"
  4. Click **Install**
  5. Restart ComfyUI

**Git Clone:**

cd ~/Documents/ComfyUI/custom_nodes && git clone https://github.com/ConstantineB6/comfy-pilot.git

The 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
Comparison generated from public README + GitHub signals. Last updated automatically.