codanna vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
codanna by bartolli | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 673 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 53 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具搜索 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 本月 | 本月 |
codanna · 概述
Codanna 是一个本地代码智能 MCP 服务器,为 AI 编码助手提供语义搜索、关系追踪和文档搜索功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
codanna · 使用场景
- 在大型代码库中查找函数及其关系
- 对实现逻辑进行语义搜索,而不仅是关键词匹配
- 通过完整依赖追踪分析代码变更的影响
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
codanna · 安装
安装
macOS, Linux, WSL
curl -fsSL --proto '=https' --tlsv1.2 https://install.codanna.sh | shHomebrew
brew install codannaWindows (PowerShell)
irm https://raw.githubusercontent.com/bartolli/codanna/main/scripts/install.ps1 | iex初始化和索引
codanna init
codanna index srceverything · 安装
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