everything vs crash-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | crash-mcp by nikkoxgonzales | |
|---|---|---|
| Stars | ★ 85,748 | ★ 69 |
| 30天用量 | — | — |
| 综合分 | 77 | 45 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 5 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
crash-mcp · 概述
CRASH 是一个支持步骤验证、分支和置信度跟踪的结构化推理 MCP 服务器。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
crash-mcp · 使用场景
- 软件开发中的复杂多步问题解决
- 需要多种架构考虑的系统设计
- 需要系统性调查的调试任务
- 代码分析和优化
- 需要跟踪置信级别的任务
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-everythingcrash-mcp · 安装
npm install crash-mcp或直接使用 npx:
npx crash-mcp快速设置
大多数 MCP 客户端使用此 JSON 配置:
{
"mcpServers": {
"crash": {
"command": "npx",
"args": ["-y", "crash-mcp"]
}
}
}客户端配置
| 客户端 | 设置方法 | |--------|-------------| | **Claude Code** | claude mcp add crash -- npx -y crash-mcp | | **Cursor** | 添加到 ~/.cursor/mcp.json | | **VS Code** | 添加到 mcp.servers 下的设置 JSON | | **Claude Desktop** | 添加到 claude_desktop_config.json | | **Windsurf** | 添加到 MCP 配置文件 | | **JetBrains** | 设置 > 工具 > AI 助手 > MCP | | **其他** | 使用上述标准 MCP JSON 配置 |