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 | — | — |
| Score | 57 | 40 |
| Official | — | — |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | Ops & InfraMonitoringNotion |
| Language | TypeScript | Python |
| Last commit | this month | 2 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/mcphubClaude 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 devOpsLens · 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"
}
}
}
}