MCP Catalogs
Home

indxr vs everything

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

indxr
by bahdotsh
everything
by modelcontextprotocol
Stars★ 64★ 85,748
30d uses
Score4677
Official
Categories
Developer ToolsAI / LLM ToolsKnowledge Graph
Developer ToolsAI / LLM ToolsOther
LanguageRustTypeScript
Last commit1 mo agothis month

indxr · Summary

A fast codebase indexer and knowledge wiki for AI agents with 26 MCP tools for code analysis.

everything · Summary

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

indxr · Use cases

  • AI agents analyzing large codebases to understand architecture and relationships
  • Continuous documentation generation and maintenance via the knowledge wiki
  • Code quality monitoring and complexity hotspot identification

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

indxr · Install

Install indxr using cargo:

cargo install indxr --features wiki

To use as an MCP server, run:

indxr serve ./my-project --watch --wiki-auto-update

For Claude Desktop, add to config.json:

{
  "mcpServers": {
    "indxr": {
      "command": "indxr",
      "args": ["serve", "/path/to/project", "--wiki-auto-update"]
    }
  }
}

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.