MCP Catalogs
首页

llmwiki vs everything

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

llmwiki
by lucasastorian
everything
by modelcontextprotocol
Stars★ 908★ 85,748
30天用量
综合分5277
官方
分类
AI / LLM 工具知识库 / RAG效率工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交本月本月

llmwiki · 概述

LLM Wiki 是一个 MCP 服务器,可索引本地文档并让 Claude 构建和维护知识维基。

everything · 概述

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

llmwiki · 使用场景

  • 学术研究管理和文献综述综合
  • 个人知识库构建和概念映射
  • 项目仓库的自动化文档生成

everything · 使用场景

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

llmwiki · 安装

# 克隆并设置
git clone https://github.com/lucasastorian/llmwiki.git
cd llmwiki

cd api && python -m venv .venv && source .venv/bin/activate && pip install -r requirements.txt
cd .. && cd web && npm install && cd ..

# 初始化工作空间
./llmwiki init ~/research

# 启动服务器
./llmwiki serve ~/research

# 生成 Claude Desktop 配置
./llmwiki mcp-config ~/research

将以下内容添加到您的 claude_desktop_config.json 中:

{
  "mcpServers": {
    "llmwiki-research": {
      "command": "python",
      "args": ["-m", "llmwiki", "mcp", "~/research"]
    }
  }
}

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