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 | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsSearchAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Rust | TypeScript |
| Last commit | this month | this 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
- Install Vera:
bunx @vera-ai/cli install # or: npx -y @vera-ai/cli install / uvx vera-ai install- Set up models:
vera setup # Interactive wizard
vera setup --api # API mode (recommended)- Enable MCP:
vera mcp # or: bunx @vera-ai/cli mcp / uvx vera-ai mcpFor 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