MCP Catalogs
Home

dbhub vs airtable-mcp-server

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

dbhub
by bytebase
airtable-mcp-server
by domdomegg
Stars★ 2,769★ 444
30d uses
Score5753
Official
Categories
DatabaseDeveloper ToolsOps & Infra
DatabaseProductivityDeveloper Tools
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

dbhub · Summary

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

airtable-mcp-server · Summary

A comprehensive MCP server enabling AI systems to interact with Airtable databases through read and write operations.

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

airtable-mcp-server · Use cases

  • Automating data entry and updates in Airtable through AI assistants
  • Building intelligent data pipelines that connect Airtable with other systems
  • Enabling AI-powered analysis and reporting on Airtable datasets

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

airtable-mcp-server · Install

Installation

**Step 1**: [Create an Airtable personal access token](https://airtable.com/create/tokens/new)

  • Name: e.g. 'Airtable MCP Server Token'
  • Scopes: schema.bases:read, data.records:read, and optionally schema.bases:write, data.records:write

**Step 2**: Configure Claude Desktop by adding to claude_desktop_config.json:

{
  "mcpServers": {
    "airtable": {
      "command": "npx",
      "args": [
        "-y",
        "airtable-mcp-server"
      ],
      "env": {
        "AIRTABLE_API_KEY": "pat123.abc123",
      }
    }
  }
}

Restart Claude Desktop after saving.

Comparison generated from public README + GitHub signals. Last updated automatically.