wren-engine vs everything
Side-by-side comparison to help you pick between these two MCP servers.
wren-engine by Canner | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 661 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDatabaseDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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"
}
}
}
}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