dbhub vs everything
Side-by-side comparison to help you pick between these two MCP servers.
dbhub by bytebase | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2,769 | ★ 85,748 |
| 30d uses | — | — |
| Score | 57 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
dbhub · Summary
A zero-dependency MCP server connecting to multiple databases with token-efficient SQL tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything