mongodb-lens vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mongodb-lens by furey | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 201 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 13 mo ago | this month |
mongodb-lens · Summary
MongoDB Lens is a full-featured MCP server enabling natural language interaction with MongoDB databases.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mongodb-lens · Use cases
- Database administrators can analyze and optimize MongoDB performance using natural language commands
- Developers can explore and query MongoDB databases without writing complex MongoDB queries
- Data analysts can generate reports and visualizations from MongoDB data through LLM interactions
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
mongodb-lens · Install
Installation
- Install via npm:
npm install -g mongodb-lens- Install via Docker:
docker pull furey/mongodb-lens- Configure Claude Desktop:
Add to your Claude Desktop config.json:
{
"mcpServers": {
"mongodb-lens": {
"command": "npx",
"args": ["-y", "@furey/mongodb-lens"]
}
}
}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