comfy-pilot vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
comfy-pilot by ConstantineB6 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 186 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
comfy-pilot · 概述
MCP服务器 + 嵌入式终端,允许Claude Code查看、编辑和运行ComfyUI工作流。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
comfy-pilot · 使用场景
- 通过简单描述自动构建复杂的ComfyUI工作流
- 根据生成图像的视觉反馈修改现有工作流
- 通过自然语言命令管理模型和自定义节点
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
comfy-pilot · 安装
安装
**CLI (推荐):**
comfy node install comfy-pilot**ComfyUI Manager:**
- 打开ComfyUI
- 点击 **Manager** → **Install Custom Nodes**
- 搜索 "Comfy Pilot"
- 点击 **Install**
- 重启ComfyUI
**Git Clone:**
cd ~/Documents/ComfyUI/custom_nodes && git clone https://github.com/ConstantineB6/comfy-pilot.gitMCP服务器会自动为Claude Code配置。如需要,添加到~/.claude.json:
{
"mcpServers": {
"comfyui": {
"command": "python3",
"args": ["/path/to/comfy-pilot/mcp_server.py"]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything