MCP Catalogs
Home

Vera vs everything

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

Vera
by lemon07r
everything
by modelcontextprotocol
Stars★ 82★ 85,748
30d uses
Score4677
Official
Categories
Developer ToolsSearchAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageRustTypeScript
Last committhis monththis month

Vera · Summary

Local code search tool combining BM25, vector similarity, and cross-encoder reranking with MCP support.

everything · Summary

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

Vera · Use cases

  • AI-powered code search and navigation within large codebases
  • Integration with coding assistants to provide enhanced code intelligence
  • Local code analysis for reference finding, dead code detection, and project overview

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

Vera · Install

Installation

  1. Install Vera:
bunx @vera-ai/cli install   # or: npx -y @vera-ai/cli install / uvx vera-ai install
  1. Set up models:
vera setup                       # Interactive wizard
vera setup --api                 # API mode (recommended)
  1. Enable MCP:
vera mcp   # or: bunx @vera-ai/cli mcp / uvx vera-ai mcp

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "vera": {
      "command": "vera",
      "args": ["mcp"]
    }
  }
}

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.