ClaudeHistoryMCP vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
ClaudeHistoryMCP by jhammant | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 65 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具搜索 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
ClaudeHistoryMCP · 概述
一个用于搜索 Claude Code 对话历史的 MCP 服务器,采用混合 BM25 + TF-IDF 搜索和知识提取功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
ClaudeHistoryMCP · 使用场景
- 通过搜索过去类似问题的解决方案来调试反复出现的问题
- 启动新会话时获取项目决策和上下文
- 跨多个项目发现开发工作流中的模式
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
ClaudeHistoryMCP · 安装
安装
- 克隆并构建服务器:
git clone https://github.com/jhammant/ClaudeHistoryMCP.git
cd ClaudeHistoryMCP
npm install
npm run build- 构建搜索索引:
npm run build-index- 向 Claude 注册 MCP 服务器:
claude mcp add claude-history -- node "/path/to/ClaudeHistoryMCP/dist/index.js"- 安装会话启动钩子(可选):
npm run install-hook- 添加到全局 CLAUDE.md(推荐):
## Claude History MCP
当 `claude-history` MCP 可用时,主动使用它:
- **会话开始**:使用 `get_project_context` 检查先前的决策、模式和最近的会话摘要
- **调试**:在从头开始之前,使用 `find_solutions` 搜索历史记录中的过去修复方案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