MCP Catalogs
Home

chunkhound vs everything

Side-by-side comparison to help you pick between these two MCP servers.

chunkhound
by chunkhound
everything
by modelcontextprotocol
Stars★ 1,258★ 85,748
30d uses
Score5577
Official
Categories
Developer ToolsAI / LLM ToolsSearch
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

chunkhound · Summary

Local-first codebase intelligence tool with MCP integration for semantic code searching across 32+ languages.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

chunkhound · Use cases

  • Searching large monorepos with cross-team dependencies
  • Security-sensitive codebases requiring local-only processing
  • Multi-language projects needing consistent search capabilities

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

chunkhound · Install

  1. Install uv package manager if needed: curl -LsSf https://astral.sh/uv/install.sh | sh
  2. Install ChunkHound: uv tool install chunkhound
  3. Create .chunkhound.json in project root with your API keys (optional for regex search)
  4. Index your codebase: chunkhound index

For Claude Desktop integration, add to your config.json:

{
  "mcpServers": {
    "chunkhound": {
      "command": "chunkhound",
      "args": ["serve"]
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.