MCP Catalogs
首页

context-lens vs everything

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

context-lens
by cornelcroi
everything
by modelcontextprotocol
Stars★ 22★ 85,748
30天用量
综合分4277
官方
分类
搜索开发者工具AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交6 个月前本月

context-lens · 概述

一个为 MCP AI 助手设计的语义搜索知识库,使用 LanceDB 向量存储技术索引本地文件或 GitHub 仓库。

everything · 概述

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

context-lens · 使用场景

  • 索引代码库以快速理解复杂项目并回答关于实现的具体问题
  • 分析文档和合同以在多个文档中查找特定条款和术语
  • 从 GitHub 仓库构建知识库,使 AI 助手能够理解开源项目

everything · 使用场景

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

context-lens · 安装

安装

Context Lens 可通过 PyPI 安装:

pip install context-lens

Claude Desktop 设置

添加到 Claude Desktop 配置:

{
  "mcpServers": {
    "context-lens": {
      "command": "uvx",
      "args": ["context-lens"]
    }
  }
}

Cursor 设置

添加到 .cursor/mcp.json

{
  "mcpServers": {
    "context-lens": {
      "command": "uvx",
      "args": ["context-lens"]
    }
  }
}

其他 MCP 客户端

对于任何兼容的 MCP 客户端:

{
  "mcpServers": {
    "context-lens": {
      "command": "uvx",
      "args": ["context-lens"]
    }
  }
}

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