MCP Catalogs
首页

ontomics vs everything

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

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

ontomics · 概述

ontomics 通过 MCP 从代码库中提取领域知识,减少 20% 的令牌消耗和 10% 的搜索时间,使概念和命名约定可查询。

everything · 概述

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

ontomics · 使用场景

  • 通过基于概念的查询而非文件搜索将代码理解速度提高 20 倍
  • 通过检查命名约定与既定模式来保持代码一致性
  • 发现不同命名函数之间的实现相似性
  • 导出领域知识,以在新的代码库中建立既定约定

everything · 使用场景

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

ontomics · 安装

使用您喜欢的方式安装 ontomics:

**npm (macOS/Linux):**

npm install -g @ontomics/ontomics

**macOS (Homebrew):**

brew install EtienneChollet/tap/ontomics

**与 Claude Desktop 注册:** 添加到您的 claude_desktop_config.json

{
  "mcpServers": {
    "ontomics": {
      "command": "ontomics"
    }
  }
}

**与团队共享** — 在您的代码库根目录中放置一个 .mcp.json

{
  "mcpServers": {
    "ontomics": {
      "command": "npx",
      "args": ["-y", "@ontomics/ontomics", "--repo", "."]
    }
  }
}

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