data-api-builder vs dbhub
Side-by-side comparison to help you pick between these two MCP servers.
data-api-builder by Azure | dbhub by bytebase | |
|---|---|---|
| Stars | ★ 1,410 | ★ 2,769 |
| 30d uses | — | — |
| Score | 53 | 57 |
| Official | — | — |
| Categories | DatabaseDeveloper ToolsCloud Storage | DatabaseDeveloper ToolsOps & Infra |
| Language | C# | TypeScript |
| Last commit | this month | 1 mo ago |
data-api-builder · Summary
Azure's Data API Builder provides REST and GraphQL endpoints for Azure databases with upcoming MCP tools support.
dbhub · Summary
A zero-dependency MCP server connecting to multiple databases with token-efficient SQL tools.
data-api-builder · Use cases
- Create REST and GraphQL APIs for Azure databases
- Build secure data access layers for applications
- Generate API endpoints for on-premises databases in any cloud
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
data-api-builder · Install
- Install .NET 8 or later runtime: https://get.dot.net
- Install the DAB command line tool:
``sh dotnet tool install microsoft.dataapibuilder -g ``
- Initialize and configure DAB with:
``sh dab init --database-type mssql --connection-string "@env('my-connection-string')" --host-mode development ``
- Add your database entities and start the server:
``sh dab add Todo --source "dbo.Todo" --permissions "anonymous:*" dab start ``
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"]
}
}
}