comfyui-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
comfyui-mcp-server by joenorton | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 313 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsMediaDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 3 mo ago | this month |
comfyui-mcp-server · Summary
Lightweight Python MCP server for local ComfyUI that enables AI agents to generate and iteratively refine images, audio, and video.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
comfyui-mcp-server · Use cases
- AI assistants creating website hero images and logos with precise control
- Content generation for social media platforms with iterative refinement
- Game asset development with consistent style variations
- Music generation from lyrics and tags
- Automated media generation for content creators
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
comfyui-mcp-server · Install
Quick Installation
1) Clone and install dependencies:
git clone https://github.com/joenorton/comfyui-mcp-server.git
cd comfyui-mcp-server
pip install -r requirements.txt2) Start ComfyUI locally:
cd <ComfyUI_dir>
python main.py --port 81883) Run the MCP server:
python server.py4) Configure your AI client (e.g., Claude Desktop, Cursor) with:
{
"mcpServers": {
"comfyui-mcp-server": {
"type": "streamable-http",
"url": "http://127.0.0.1:9000/mcp"
}
}
}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