MCP Catalogs
Home

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
Score5740
Official
Categories
DatabaseDeveloper ToolsOps & Infra
Ops & InfraMonitoringNotion
LanguageTypeScriptPython
Last commit1 mo ago2 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 --demo

Claude 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.

  1. Clone the repository:
git clone https://github.com/Sherin-SEF-AI/OpsLens.git
cd OpsLens
  1. Install dependencies:
pip install -r requirements.txt
  1. Set up environment variables:

Create a .env file with your Notion integration token and other configuration.

  1. Run the application:
python main.py

Claude 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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.