Mantic.sh vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
Mantic.sh by marcoaapfortes | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 547 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具搜索AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
Mantic.sh · 概述
一款面向AI代理的上下文感知代码搜索引擎,能够理解代码结构。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
Mantic.sh · 使用场景
- AI代理需要具有上下文理解能力的代码库搜索
- 开发者需要通过意图查找文件而非精确文本
- 代码审查员需要理解更改的影响范围
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
Mantic.sh · 安装
MCP 服务器安装
Mantic 作为 MCP (Model Context Protocol) 服务器,适用于 Claude Desktop、Cursor、VS Code 和其他兼容 MCP 的工具。
**一键安装:**
- [在 Cursor 中安装](https://cursor.com/en/install-mcp?name=mantic&config=eyJ0eXBlIjogInN0ZGlvIiwgImNvbW1hbmQiOiAibnB4IiwgImFyZ3MiOiBbIi15IiwgIm1hbnRpYy5zaEBsYXRlc3QiLCAic2VydmVyIl19)
- [在 VS Code 中安装](https://vscode.dev/redirect/mcp/install?name=mantic&config=%7B%22type%22%3A%20%22stdio%22%2C%20%22command%22%3A%20%22npx%22%2C%20%22args%22%3A%20%5B%22-y%22%2C%20%22mantic.sh%40latest%22%2C%20%22server%22%5D%7D)
**手动配置**(适用于 Claude Desktop 或其他 MCP 客户端):
将此添加到您的 MCP 设置文件中:
- **macOS**:
~/Library/Application Support/Claude/claude_desktop_config.json - **Windows**:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mantic": {
"command": "npx",
"args": ["-y", "mantic.sh@latest", "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