ontomics vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ontomics by EtienneChollet | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 31 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | Rust | TypeScript |
| Last commit | 1 mo ago | this month |
ontomics · Summary
ontomics extracts domain knowledge from codebases via MCP, reducing token consumption 20x and search time 10x by making concepts and naming conventions queryable.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ontomics · Use cases
- Accelerating code understanding by 20x through concept-based queries instead of file searches
- Maintaining code consistency by checking naming conventions against established patterns
- Discovering implementation similarities across differently named functions
- Exporting domain knowledge to bootstrap new repositories with established conventions
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
ontomics · Install
Install ontomics using your preferred method:
**npm (macOS/Linux):**
npm install -g @ontomics/ontomics**macOS (Homebrew):**
brew install EtienneChollet/tap/ontomics**Register with Claude Desktop:** Add to your claude_desktop_config.json:
{
"mcpServers": {
"ontomics": {
"command": "ontomics"
}
}
}**Share with your team** — drop an .mcp.json in your repo root:
{
"mcpServers": {
"ontomics": {
"command": "npx",
"args": ["-y", "@ontomics/ontomics", "--repo", "."]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything