MCP Catalogs
首页

mcp-documentation-server vs everything

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

mcp-documentation-server
by andrea9293
everything
by modelcontextprotocol
Stars★ 313★ 85,748
30天用量
综合分5277
官方
分类
本地文件系统搜索AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交3 个月前本月

mcp-documentation-server · 概述

TypeScript 实现的 MCP 服务器,使用 Orama 向量数据库和可选的 Gemini AI 集成,提供本地文档管理和语义搜索功能。

everything · 概述

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

mcp-documentation-server · 使用场景

  • 管理和搜索技术文档和 API 参考
  • 创建公司内部文档的知识库
  • 具有语义搜索功能的个人文档组织

everything · 使用场景

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

mcp-documentation-server · 安装

安装

  1. 配置您的 MCP 客户端(例如 Claude Desktop、VS Code):
{
  "mcpServers": {
    "documentation": {
      "command": "npx",
      "args": [
        "-y",
        "@andrea9293/mcp-documentation-server"
      ],
      "env": {
        "MCP_BASE_DIR": "/path/to/workspace",
        "GEMINI_API_KEY": "your-api-key-here",
        "MCP_EMBEDDING_MODEL": "Xenova/all-MiniLM-L6-v2",
        "START_WEB_UI": "true",
        "WEB_PORT": "3080"
      }
    }
  }
}
  1. 安装包:
npm install -g @andrea9293/mcp-documentation-server

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