MCP Catalogs
首页

everything vs remind

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

everything
by modelcontextprotocol
remind
by sandst1
Stars★ 85,748★ 78
30天用量
综合分7746
官方
分类
开发者工具AI / LLM 工具其它
AI / LLM 工具知识库 / RAG开发者工具
实现语言TypeScriptPython
最近提交本月本月

everything · 概述

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

remind · 概述

Remind 是一个 AI 智能体记忆层,提取和保留概念化知识而非简单文本。

everything · 使用场景

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

remind · 使用场景

  • 开发团队使用 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-everything

remind · 安装

# 安装包
pip install remind-mcp

# 启动 MCP 服务器
remind-mcp --port 8765

配置 Claude Desktop:

{
  "mcpServers": {
    "remind": {
      "url": "http://127.0.0.1:8765/sse?db=my-project"
    }
  }
}

可选,安装额外功能:

pip install "remind-mcp[postgres]"  # PostgreSQL 支持
pip install "remind-mcp[rerank]"   # 跨编码器重新排序
对比内容由 README + GitHub 公开数据自动生成,定期更新。