MCP Catalogs
Home

comfy-pilot vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

comfy-pilot
by ConstantineB6
filesystem
by modelcontextprotocol
Stars★ 186★ 85,748
30d uses
Score4877
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit3 mo agothis month

comfy-pilot · Summary

MCP server + embedded terminal allowing Claude Code to view, edit, and run ComfyUI workflows programmatically.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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"]
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.