MCP Catalogs
Home

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
Score5753
Official
Categories
DatabaseDeveloper ToolsOps & Infra
AI / LLM ToolsDatabaseDeveloper Tools
LanguageTypeScriptJava
Last commit1 mo agothis 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 --demo

Claude 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

  1. Clone the repository: git clone https://github.com/Canner/wren-engine
  2. Navigate to the MCP server: cd wren-engine/mcp-server
  3. Follow the setup instructions in the README

Through AI Agents

  1. Follow the [Installation guide](https://docs.getwren.ai/oss/engine/get_started/installation)
  2. 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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.