everything vs GUI-MCP
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | GUI-MCP by PhialsBasement | |
|---|---|---|
| Stars | ★ 85,748 | ★ 24 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 5 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
GUI-MCP · Summary
Visual node editor for creating FastMCP servers without coding, featuring Blueprint-style interface.
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
GUI-MCP · Use cases
- Rapid prototyping of MCP servers without programming knowledge
- Visualizing MCP server logic and data flow
- Collaborative MCP server design through shareable node graphs
- Teaching MCP server concepts through visual representation
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-everythingGUI-MCP · Install
# Clone the repository
git clone https://github.com/PhialsBasement/GUI-MCP.git
cd GUI-MCP
# Install dependencies
pip install -r requirements.txt
# Run
python main.pyClaude Desktop Configuration:
{
"mcpServers": {
"gui-mcp": {
"command": "python",
"args": ["/path/to/GUI-MCP/main.py"]
}
}
}