filesystem vs UIUX-MCP
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | UIUX-MCP by re-rank | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 34 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 7 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using 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 Extension
Click the installation buttons in the README to install directly in VS Code.
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"]
}
}
}