MCP Catalogs
首页

mem0-mcp-selfhosted vs everything

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

mem0-mcp-selfhosted
by elvismdev
everything
by modelcontextprotocol
Stars★ 84★ 85,748
30天用量
综合分4877
官方
分类
AI / LLM 工具开发者工具知识库 / RAG
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交2 个月前本月

mem0-mcp-selfhosted · 概述

一个自托管 mem0 MCP 服务器,与 Qdrant、Neo4j 和 Ollama 集成,为 Claude Code 提持久的记忆管理功能。

everything · 概述

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

mem0-mcp-selfhosted · 使用场景

  • 跨项目上下文的长时间编码会话中的持久化记忆管理
  • 用于复杂系统的基于知识图谱的实体关系跟踪
  • 使用 Ollama 作为 LLM 后端的本地优先 AI 应用程序

everything · 使用场景

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

mem0-mcp-selfhosted · 安装

# 添加带有默认 Anthropic 提供者的全局配置
claude mcp add --scope user --transport stdio mem0 \
  --env MEM0_USER_ID=your-user-id \
  -- uvx --from git+https://github.com/elvismdev/mem0-mcp-selfhosted.git mem0-mcp-selfhosted

# 添加完全本地的 Ollama 配置
claude mcp add --scope user --transport stdio mem0 \
  --env MEM0_PROVIDER=ollama \
  --env MEM0_LLM_MODEL=qwen3:14b \
  --env MEM0_USER_ID=your-user-id \
  -- uvx --from git+https://github.com/elvismdev/mem0-mcp-selfhosted.git mem0-mcp-selfhosted

# 项目特定设置,创建 .mcp.json
{
  "mcpServers": {
    "mem0": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/elvismdev/mem0-mcp-selfhosted.git", "mem0-mcp-selfhosted"],
      "env": {
        "MEM0_PROVIDER": "ollama",
        "MEM0_LLM_MODEL": "qwen3:14b",
        "MEM0_USER_ID": "your-user-id"
      }
    }
  }
}

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 公开数据自动生成,定期更新。