everything vs heuristic-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | heuristic-mcp by softerist | |
|---|---|---|
| Stars | ★ 85,748 | ★ 21 |
| 30天用量 | — | — |
| 综合分 | 77 | 40 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具搜索 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 本月 | 3 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
heuristic-mcp · 概述
MCP 服务器,为 AI 编码助手提供基于调用图邻近性和最近性排序的语义代码搜索功能。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
heuristic-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-everythingheuristic-mcp · 安装
npm install -g @softerist/heuristic-mcp然后启动服务器:
heuristic-mcp --start对于 Claude Desktop,将此添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"heuristic": {
"command": "heuristic-mcp",
"args": ["--start"]
}
}
}