everything vs mermaid-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | mermaid-mcp by Narasimhaponnada | |
|---|---|---|
| Stars | ★ 85,748 | ★ 42 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 本月 | 6 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mermaid-mcp · 概述
AI 驱动的 Mermaid 图表生成 MCP 服务器,支持 GitHub Copilot、Claude 和自定义 LLM 应用。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mermaid-mcp · 使用场景
- 为技术文档生成架构图
- 为 CI/CD 流程和 GitHub Actions 创建流程图
- 为用户身份验证工作流构建序列图
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-everythingmermaid-mcp · 安装
安装
选项 1:从 NPM 安装(推荐)
npm install -g @narasimhaponnada/mermaid-mcp-server
mermaid-mcp --version选项 2:从源代码安装
git clone https://github.com/Narasimhaponnada/mermaid-mcp.git
cd mermaid-mcp/mermaid-mcp-server
npm install
npm run build配置 GitHub Copilot
添加到 VS Code 设置中:
{
"github.copilot.mcp.servers": {
"mermaid": {
"command": "mermaid-mcp"
}
}
}配置 Claude Desktop
添加到 Claude Desktop config.json 中:
{
"mcpServers": {
"mermaid": {
"command": "mermaid-mcp"
}
}
}