DecisionNode vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
DecisionNode by decisionnode | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 29 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具知识库 / RAG | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
DecisionNode · 概述
DecisionNode 是一个 CLI 和本地 MCP 服务器,用于在多个 AI 编码环境中存储结构化记忆并支持语义搜索。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
DecisionNode · 使用场景
- 软件开发项目中的技术文档和决策跟踪
- 跨团队成员共享最佳实践和架构决策
- 通过提供相关技术决策增强 AI 助手上下文
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
DecisionNode · 安装
npm install -g decisionnode
cd your-project
decide init # 创建项目存储
decide setup # 配置 Gemini API 密钥(免费版)
# 连接到 Claude Code(运行一次)
claude mcp add decisionnode -s user decide-mcpClaude Desktop 配置:
{
"mcpServers": {
"decisionnode": {
"command": "npx",
"args": ["decisionnode", "mcp"]
}
}
}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