everything vs second-brain-cloudflare
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | second-brain-cloudflare by rahilp | |
|---|---|---|
| Stars | ★ 85,748 | ★ 61 |
| 30天用量 | — | — |
| 综合分 | 77 | 46 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 知识库 / RAG效率工具AI / LLM 工具 |
| 实现语言 | TypeScript | HTML |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
second-brain-cloudflare · 概述
自托管的MCP服务器,为Claude和ChatGPT等AI工具提供个人记忆层。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
second-brain-cloudflare · 使用场景
- 跨多个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-everythingsecond-brain-cloudflare · 安装
安装
- 点击README中的'部署到Cloudflare'按钮
- 在部署过程中设置AUTH_TOKEN(可以使用容易记住的短语或生成安全令牌)
- 保存令牌,因为你需要它来连接AI客户端
- 通过添加到
claude_desktop_config.json连接Claude Desktop:
{
"mcpServers": {
"second-brain": {
"command": "npx",
"args": ["@modelcontextprotocol/server-cloudflare", "https://<你的worker-url>"],
"env": {
"AUTH_TOKEN": "<你的令牌>"
}
}
}
}- 对于其他客户端,请遵循文档中的特定说明。