MCP Catalogs
Home

dbhub vs pg-aiguide

Side-by-side comparison to help you pick between these two MCP servers.

dbhub
by bytebase
pg-aiguide
by timescale
Stars★ 2,769★ 1,729
30d uses
Score5755
Official
Categories
DatabaseDeveloper ToolsOps & Infra
DatabaseDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last commit1 mo agothis month

dbhub · Summary

A zero-dependency MCP server connecting to multiple databases with token-efficient SQL tools.

pg-aiguide · Summary

MCP server providing PostgreSQL expertise, semantic search, and best practices for AI coding tools.

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

pg-aiguide · Use cases

  • Improving PostgreSQL code generation in AI coding assistants
  • Providing semantic search for PostgreSQL documentation
  • Implementing best practices for database schema design

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"]
    }
  }
}

pg-aiguide · Install

Installation Options

**As an MCP Server:** Add the public MCP server to your client configuration:

{
  "mcpServers": {
    "pg-aiguide": {
      "url": "https://mcp.tigerdata.com/docs"
    }
  }
}

**As Claude Plugin:**

claude plugin marketplace add timescale/pg-aiguide
claude plugin install pg@aiguide

**Using npx skills:**

npx skills add timescale/pg-aiguide --skill postgres
Comparison generated from public README + GitHub signals. Last updated automatically.