everything vs subcog
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | subcog by zircote | |
|---|---|---|
| Stars | ★ 85,748 | ★ 22 |
| 30天用量 | — | — |
| 综合分 | 77 | 45 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具开发者工具知识库 / RAG |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
subcog · 概述
AI 编程助手的持久化记忆系统,支持 MCP 集成、混合搜索和知识图谱功能。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
subcog · 使用场景
- 通过持久化记忆过去的决策和解决方案来增强 AI 编程助手
- 跨项目搜索和检索编码模式和最佳实践
- 知识图谱分析以理解代码元素和决策之间的关系
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-everythingsubcog · 安装
Subcog 可以通过多种方式安装:
# Cargo (推荐 Rust 开发者使用)
cargo install subcog
# Homebrew (macOS/Linux)
brew install zircote/tap/subcog
# Docker
docker run --rm ghcr.io/zircote/subcog --help
# 二进制文件下载
curl -LO https://github.com/zircote/subcog/releases/latest/download/subcog-VERSION-TARGET.tar.gz
# npm/npx (备用方案)
npx @zircote/subcog --help要作为 MCP 服务器使用,添加到 Claude Desktop 的 claude_desktop_config.json:
{
"mcpServers": {
"subcog": {
"command": "subcog",
"args": ["serve"]
}
}
}