dbhub vs OpsLens
Side-by-side comparison to help you pick between these two MCP servers.
dbhub by bytebase | OpsLens by Sherin-SEF-AI | |
|---|---|---|
| Stars | ★ 2,769 | ★ 6 |
| 30d uses | — | — |
| Score | 57 | 40 |
| Official | — | — |
| Categories | DatabaseDeveloper ToolsOps & Infra | Ops & InfraMonitoringNotion |
| Language | TypeScript | Python |
| Last commit | 1 mo ago | 2 mo ago |
dbhub · Summary
A zero-dependency MCP server connecting to multiple databases with token-efficient SQL tools.
OpsLens · Summary
OpsLens transforms Notion into an AI-powered incident command center using MCP for automated incident response.
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
OpsLens · Use cases
- Automated incident triage with AI severity assessment
- Cross-system incident correlation across Notion, Slack, and other tools
- Runbook discovery and automated remediation guidance
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"]
}
}
}OpsLens · Install
Installation
OpsLens can be deployed using Docker or run directly with Python.
- Clone the repository:
git clone https://github.com/Sherin-SEF-AI/OpsLens.git
cd OpsLens- Install dependencies:
pip install -r requirements.txt- Set up environment variables:
Create a .env file with your Notion integration token and other configuration.
- Run the application:
python main.pyClaude Desktop Integration
Add the following to your Claude Desktop config.json to integrate OpsLens as an MCP server:
{
"mcpServers": {
"opslens": {
"command": "python",
"args": ["path/to/opslens/main.py"],
"env": {
"NOTION_TOKEN": "your-notion-token"
}
}
}
}