filesystem vs UIUX-MCP
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | UIUX-MCP by re-rank | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30天用量 | — | — |
| 综合分 | 77 | 34 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 开发者工具效率工具AI / LLM 工具 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 本月 | 7 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
UIUX-MCP · 概述
KRDS UI/UX MCP服务器将韩国政府设计系统与AI助手集成,提供组件搜索、设计令牌和代码验证功能。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
UIUX-MCP · 使用场景
- 协助开发者在项目中正确实现KRDS组件
- 验证现有代码是否符合韩国政府设计标准
- 帮助设计师和开发者发现合适的UI元素和设计令牌
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 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 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
UIUX-MCP · 安装
安装
**通过Smithery安装(推荐)**
npx @smithery/cli install krds-uiux-mcp-server**手动安装**
git clone https://github.com/your-repo/krds-uiux-mcp-server
cd krds-uiux-mcp-server
npm install
npm run build**配置(Claude Desktop)** 添加到claude_desktop_config.json:
{
"mcpServers": {
"krds-uiux": {
"command": "node",
"args": ["/path/to/your/build/index.js"]
}
}
}