OpsLens vs radar
Side-by-side comparison to help you pick between these two MCP servers.
OpsLens by Sherin-SEF-AI | radar by skyhook-io | |
|---|---|---|
| Stars | ★ 6 | ★ 1,934 |
| 30d uses | — | — |
| Score | 40 | 56 |
| Official | — | — |
| Categories | Ops & InfraMonitoringNotion | Ops & InfraDeveloper ToolsMonitoring |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
OpsLens · Summary
OpsLens transforms Notion into an AI-powered incident command center using MCP for automated incident response.
radar · Summary
Radar is a Kubernetes UI with built-in MCP server for AI assistants to query cluster resources.
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
radar · Use cases
- AI assistants querying Kubernetes cluster resources and topology
- GitOps operations through AI assistants using MCP tools
- AI-powered cluster monitoring and diagnostics
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"
}
}
}
}radar · Install
# Install Radar
brew install skyhook-io/tap/radar
# Run Radar
kubectl radarTo use with Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"radar": {
"command": "radar",
"args": ["--no-browser", "--no-mcp"]
}
}
}