wren-engine vs mongodb-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
wren-engine by Canner | mongodb-mcp-server by mongodb-js | |
|---|---|---|
| Stars | ★ 661 | ★ 1,023 |
| 30d uses | — | — |
| Score | 53 | 55 |
| Official | — | — |
| Categories | AI / LLM ToolsDatabaseDeveloper Tools | DatabaseDeveloper ToolsCloud Storage |
| Language | Java | TypeScript |
| Last commit | this month | this month |
wren-engine · Summary
An open context engine for AI agents that provides business context and semantic layer over data sources.
mongodb-mcp-server · Summary
MongoDB MCP Server connects to MongoDB databases and Atlas clusters, offering tools for database operations and Atlas management.
wren-engine · Use cases
- Natural-language analytics with trusted business definitions
- AI copilots that answer questions across governed enterprise data
- Code assistants that need real business context, not just schema dumps
mongodb-mcp-server · Use cases
- AI agents querying and analyzing MongoDB databases without direct database access
- Automating MongoDB Atlas cluster management through MCP-enabled clients
- Building RAG applications that can access MongoDB data as contextual resources
wren-engine · Install
Installation
Through MCP
- Clone the repository:
git clone https://github.com/Canner/wren-engine - Navigate to the MCP server:
cd wren-engine/mcp-server - Follow the setup instructions in the README
Through AI Agents
- Follow the [Installation guide](https://docs.getwren.ai/oss/engine/get_started/installation)
- Set up quickstart with [jaffle_shop example](https://docs.getwren.ai/oss/engine/get_started/quickstart)
Claude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"wren": {
"command": "uv",
"args": ["run", "mcp-server", "serve"],
"env": {
"WREN_ENGINE_PATH": "/path/to/wren-engine"
}
}
}
}mongodb-mcp-server · Install
Installation
Via NPM (for Claude Desktop)
{
"mcpServers": {
"MongoDB": {
"command": "npx",
"args": ["-y", "mongodb-mcp-server@latest", "--readOnly"],
"env": {
"MDB_MCP_CONNECTION_STRING": "mongodb://localhost:27017/myDatabase"
}
}
}
}Via Docker
{
"mcpServers": {
"MongoDB": {
"command": "docker",
"args": [
"run",
"--rm",
"-e",
"MDB_MCP_READ_ONLY=true",
"-i",
"mongodb/mongodb-mcp-server:latest"
]
}
}
}