MCP Catalogs
首页

contextplus vs everything

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

contextplus
by forloopcodes
everything
by modelcontextprotocol
Stars★ 1,896★ 85,748
30天用量
综合分5677
官方
分类
开发者工具AI / LLM 工具知识库 / RAG
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交1 个月前本月

contextplus · 概述

Context+ 是一个 MCP 服务器,使用 RAG、AST 解析和语义链接将代码库转换为可搜索的特性图。

everything · 概述

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

contextplus · 使用场景

  • 在复杂代码库中进行大规模代码导航和理解
  • 跨项目的语义代码搜索和标识符级检索
  • 代码分析,包括影响范围追踪和静态分析
  • 使用 Obsidian 风格特性图进行代码知识管理

everything · 使用场景

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

contextplus · 安装

安装

快速开始(npx / bunx)

无需安装。将 Context+ 添加到您的 IDE MCP 配置中。

对于 Claude Code、Cursor 和 Windsurf,使用 mcpServers

{
  "mcpServers": {
    "contextplus": {
      "command": "bunx",
      "args": ["contextplus"],
      "env": {
        "OLLAMA_EMBED_MODEL": "nomic-embed-text",
        "OLLAMA_CHAT_MODEL": "gemma2:27b",
        "OLLAMA_API_KEY": "YOUR_OLLAMA_API_KEY"
      }
    }
  }
}

对于 VS Code(.vscode/mcp.json),使用 serversinputs

{
  "servers": {
    "contextplus": {
      "type": "stdio",
      "command": "bunx",
      "args": ["contextplus"],
      "env": {
        "OLLAMA_EMBED_MODEL": "nomic-embed-text",
        "OLLAMA_CHAT_MODEL": "gemma2:27b",
        "OLLAMA_API_KEY": "YOUR_OLLAMA_API_KEY"
      }
    }
  },
  "inputs": []
}

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