MCP Catalogs
Home

mcphub vs OpsLens

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

mcphub
by samanhappy
OpsLens
by Sherin-SEF-AI
Stars★ 2,082★ 6
30d uses
Score5740
Official
Categories
Developer ToolsOps & InfraAI / LLM Tools
Ops & InfraMonitoringNotion
LanguageTypeScriptPython
Last committhis month2 mo ago

mcphub · Summary

MCPHub is a unified management platform for orchestrating multiple MCP servers with flexible routing and centralized dashboard.

OpsLens · Summary

OpsLens transforms Notion into an AI-powered incident command center using MCP for automated incident response.

mcphub · Use cases

  • Organizing and managing multiple MCP servers in a distributed team environment
  • Creating custom routing strategies for different AI client connections
  • Implementing secure access controls for MCP resources in production

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

mcphub · Install

Docker Installation (Recommended)

# Run with custom config (recommended)
docker run -p 3000:3000 -v ./mcp_settings.json:/app/mcp_settings.json -v ./data:/app/data samanhappy/mcphub

# Or run with default settings
docker run -p 3000:3000 samanhappy/mcphub

Claude Desktop Configuration

Add to Claude Desktop's config.json:

{
  "mcpServers": {
    "mcphub": {
      "command": "http",
      "args": ["http://localhost:3000/mcp"]
    }
  }
}

Local Development

git clone https://github.com/samanhappy/mcphub.git
cd mcphub
pnpm install
pnpm dev

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.