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 | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| 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.
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:**
- 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"]
}
}
}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.