dbhub vs wren-engine
Side-by-side comparison to help you pick between these two MCP servers.
dbhub by bytebase | wren-engine by Canner | |
|---|---|---|
| Stars | ★ 2,769 | ★ 661 |
| 30d uses | — | — |
| Score | 57 | 53 |
| Official | — | — |
| Categories | DatabaseDeveloper ToolsOps & Infra | AI / LLM ToolsDatabaseDeveloper Tools |
| Language | TypeScript | Java |
| Last commit | 1 mo ago | this month |
dbhub · Summary
A zero-dependency MCP server connecting to multiple databases with token-efficient SQL tools.
wren-engine · Summary
An open context engine for AI agents that provides business context and semantic layer over data sources.
dbhub · Use cases
- Database exploration and schema inspection for developers
- Secure SQL query execution with safety controls in CI/CD pipelines
- Multi-database management and operations through a unified interface
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
dbhub · Install
Installation
**Docker:**
docker run --rm --init \ --name dbhub \ --publish 8080:8080 \ bytebase/dbhub \ --transport http \ --port 8080 \ --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"**NPM:**
npx @bytebase/dbhub@latest --transport http --port 8080 --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"**Demo Mode:**
npx @bytebase/dbhub@latest --transport http --port 8080 --demoClaude Desktop Configuration
Add the following to your Claude Desktop configuration:
{
"mcpServers": {
"dbhub": {
"command": "npx",
"args": ["@bytebase/dbhub@latest", "--transport", "stdio"]
}
}
}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"
}
}
}
}