everything vs context-harness
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | context-harness by parallax-labs | |
|---|---|---|
| Stars | ★ 85,748 | ★ 36 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具本地文件系统AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 3 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
context-harness · 概述
本地优先的上下文摄入与检索框架,使用 SQLite、嵌入技术和 MCP 服务器,为 Cursor 和 Claude 等 AI 工具提供服务。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
context-harness · 使用场景
- 从本地文档和代码仓库构建个人知识库
- 通过 MCP 集成使 AI 助手访问公司文档
- 创建可搜索的 Git 仓库档案,支持自动同步
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-everythingcontext-harness · 安装
安装
**预构建二进制文件**(推荐):
# macOS (Apple Silicon)
curl -L https://github.com/parallax-labs/context-harness/releases/latest/download/ctx-macos-aarch64.tar.gz | tar xz
sudo mv ctx /usr/local/bin/
# Linux (x86_64)
curl -L https://github.com/parallax-labs/context-harness/releases/latest/download/ctx-linux-x86_64.tar.gz | tar xz
sudo mv ctx /usr/local/bin/**Claude Desktop MCP 配置:
添加到 claude_desktop_config.json:
{
"mcpServers": {
"context-harness": {
"url": "http://127.0.0.1:7331/mcp"
}
}
}**启动 MCP 服务器:
ctx serve mcp