mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp by magicuidesign | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 185 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp · Summary
MCP server for Magic UI component registry, enabling developers to browse and search UI components.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp · Use cases
- Adding UI animations to web projects
- Implementing complex UI components without manual coding
- Discovering available Magic UI components through AI assistants
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
mcp · Install
Installation
Install using the Magic UI CLI:
npx @magicuidesign/cli@latest install <client>Or manually add to your IDE's MCP config:
{
"mcpServers": {
"magicuidesign-mcp": {
"command": "npx",
"args": ["-y", "@magicuidesign/mcp@latest"]
}
}
}This server is supported by clients like Cursor, Windsurf, Claude, Cline, and roo-cline.
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