MCP Catalogs
Home

everything vs UIUX-MCP

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
UIUX-MCP
by re-rank
Stars★ 85,748★ 1
30d uses
Score7734
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsProductivityAI / LLM Tools
LanguageTypeScriptJavaScript
Last committhis month7 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

UIUX-MCP · Summary

KRDS UI/UX MCP Server integrates Korea's government design system with AI assistants, providing component search, design tokens, and code validation.

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

UIUX-MCP · Use cases

  • Assisting developers in implementing KRDS components correctly in their projects
  • Validating existing code for compliance with Korean government design standards
  • Helping designers and developers discover appropriate UI elements and design tokens

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

UIUX-MCP · Install

Installation

**Via Smithery (Recommended)**

npx @smithery/cli install krds-uiux-mcp-server

**Manual Installation**

git clone https://github.com/your-repo/krds-uiux-mcp-server
cd krds-uiux-mcp-server
npm install
npm run build

**Configuration (Claude Desktop)** Add to claude_desktop_config.json:

{
  "mcpServers": {
    "krds-uiux": {
      "command": "node",
      "args": ["/path/to/your/build/index.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.