MCP Catalogs
首页

ctxvault vs everything

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

ctxvault
by Filippo-Venturini
everything
by modelcontextprotocol
Stars★ 56★ 85,748
30天用量
综合分4577
官方
分类
AI / LLM 工具知识库 / RAG开发者工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交1 个月前本月

ctxvault · 概述

CtxVault 为AI代理提供分类记忆基础设施,具有语义和过程性保险库隔离功能。

everything · 概述

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

ctxvault · 使用场景

  • 研究助手跨会话持久记忆
  • 具有隔离知识库的多代理系统
  • 个人AI辅助知识管理

everything · 使用场景

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

ctxvault · 安装

安装

**要求:** Python 3.10+

**从 PyPI 安装:**

pip install ctxvault

**从源码安装:**

git clone https://github.com/Filippo-Venturini/ctxvault
cd ctxvault
uv sync            # 创建 .venv 并安装所有依赖
uv run ctxvault    # 运行 CLI

**MCP 配置:** 添加到 Claude Desktop 配置文件:

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