comfyui-mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
comfyui-mcp-server by joenorton | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 313 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具多媒体开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
comfyui-mcp-server · 概述
轻量级 Python MCP 服务器,用于本地 ComfyUI,使 AI 智能体能生成和迭代优化图像、音频和视频。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
comfyui-mcp-server · 使用场景
- AI 助手创建网站首页图像和标志,实现精确控制
- 为社交媒体平台生成内容并进行迭代优化
- 游戏资产开发,保持一致的变体风格
- 根据歌词和标签生成音乐
- 内容创作者的自动化媒体生成
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
comfyui-mcp-server · 安装
快速安装
1) 克隆并安装依赖项:
git clone https://github.com/joenorton/comfyui-mcp-server.git
cd comfyui-mcp-server
pip install -r requirements.txt2) 在本地启动 ComfyUI:
cd <ComfyUI_dir>
python main.py --port 81883) 运行 MCP 服务器:
python server.py4) 配置您的 AI 客户端(如 Claude Desktop、Cursor):
{
"mcpServers": {
"comfyui-mcp-server": {
"type": "streamable-http",
"url": "http://127.0.0.1:9000/mcp"
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 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 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。