mcp-mongo-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-mongo-server by kiliczsh | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 278 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
mcp-mongo-server · Summary
An MCP server for MongoDB interaction with schema inference, query capabilities, and configurable read-only mode.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-mongo-server · Use cases
- Enabling AI assistants to query and analyze MongoDB databases
- Automating database management operations through natural language
- Allowing LLM applications to access and manipulate data in MongoDB collections
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
mcp-mongo-server · Install
Installation
npx -y mcp-mongo-server mongodb://localhost:27017/databaseUsage
# Start server with MongoDB URI
npx -y mcp-mongo-server mongodb://user:password@localhost:27017/database
# Connect in read-only mode
npx -y mcp-mongo-server mongodb://user:password@localhost:27017/database --read-onlyClaude Desktop Integration
Add to Claude Desktop config:
{
"mcpServers": {
"mongo": {
"command": "npx",
"args": ["-y", "mcp-mongo-server", "mongodb://localhost:27017/database"]
}
}
}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