MCP Catalogs
首页

context-sync vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

context-sync
by Intina47
everything
by modelcontextprotocol
Stars★ 124★ 85,748
30天用量
综合分5077
官方
分类
开发者工具AI / LLM 工具知识库 / RAG
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交1 个月前本月

context-sync · 概述

为LLM应用提供本地持久化内存存储,通过MCP工具保持项目连续性。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

context-sync · 使用场景

  • 在多个AI编码会话之间保持项目上下文
  • 为AI助手保存重要决策和约束条件
  • 提供带有git感知能力的结构化文件探索
  • 与Notion集成以进行额外上下文查找

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

context-sync · 安装

安装

全局安装:

npm install -g @context-sync/server

全局安装期间会自动运行配置。安装后,重启您的AI工具。

Claude Desktop配置

添加到claude_desktop_config.json

{
  "mcpServers": {
    "context-sync": {
      "command": "context-sync",
      "args": []
    }
  }
}

VS Code (GitHub Copilot)

全局安装时Context Sync应自动被检测到。

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
对比内容由 README + GitHub 公开数据自动生成,定期更新。