MCP Catalogs
首页

mcp vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

mcp
by magicuidesign
everything
by modelcontextprotocol
Stars★ 185★ 85,748
30天用量
综合分4877
官方
分类
开发者工具AI / LLM 工具效率工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交1 个月前本月

mcp · 概述

Magic UI 组件库的 MCP 服务器,让开发者可浏览和搜索 UI 组件。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

mcp · 使用场景

  • 向 Web 项目添加 UI 动画
  • 无需手动编码即可实现复杂的 UI 组件
  • 通过 AI 助手发现可用的 Magic UI 组件

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

mcp · 安装

安装

使用 Magic UI CLI 安装:

npx @magicuidesign/cli@latest install <客户端>

或手动添加到您的 IDE 的 MCP 配置中:

{
  "mcpServers": {
    "magicuidesign-mcp": {
      "command": "npx",
      "args": ["-y", "@magicuidesign/mcp@latest"]
    }
  }
}

此服务器支持 Cursor、Windsurf、Claude、Cline 和 roo-cline 等客户端。

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。