everything vs open-brain-template
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | open-brain-template by wefilmshit | |
|---|---|---|
| Stars | ★ 85,748 | ★ 23 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | HTML |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
open-brain-template · 概述
为AI代理提供持久化记忆系统的可视化面板,支持MCP协议集成。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
open-brain-template · 使用场景
- AI重度用户需要在多个会话和工具间保持一致的上下文
- 开发团队希期能在团队成员间共享项目特定的规则和偏好
- 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-everythingopen-brain-template · 安装
安装步骤
- 创建一个 [Supabase](https://supabase.com) 项目
- 克隆此仓库
- 替换
index.html中的YOUR_SUPABASE_URL和YOUR_SUPABASE_ANON_KEY - 将您的电子邮件添加到
ALLOWED_EMAILS - 部署到 [Vercel](https://vercel.com)
可选组件
- **SessionStart 钩子**: 添加到
~/.claude/settings.json:
``json { "hooks": { "SessionStart": [ { "hooks": [ { "type": "command", "command": "$HOME/.claude/hooks/session-start-memory.sh", "timeout": 15 } ] } ] } } ``
- **Memory Steward**: 按照 [docs/memory-steward.md](docs/memory-steward.md) 中的说明操作