inspector vs OpsLens
Side-by-side comparison to help you pick between these two MCP servers.
inspector by MCPJam | OpsLens by Sherin-SEF-AI | |
|---|---|---|
| Stars | ★ 1,944 | ★ 6 |
| 30d uses | — | — |
| Score | 56 | 40 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsMonitoring | Ops & InfraMonitoringNotion |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
inspector · Summary
MCPJam is a comprehensive development platform for debugging, inspecting, and evaluating MCP servers and apps.
OpsLens · Summary
OpsLens transforms Notion into an AI-powered incident command center using MCP for automated incident response.
inspector · Use cases
- Debugging MCP servers with full trace visibility into tool calls and context
- Evaluating MCP servers across multiple LLMs to catch regressions early
- Testing OAuth flows and server capabilities programmatically via CLI and SDK
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
inspector · Install
Quick Start
Hosted Web App: Open [app.mcpjam.com](https://app.mcpjam.com) in your browser. No install needed.
Desktop App: Download the installer for your OS:
- [Mac](https://github.com/MCPJam/inspector/releases/latest/download/MCPJam.Inspector.dmg)
- [Windows](https://github.com/MCPJam/inspector/releases/latest/download/MCPJam-Inspector-Setup.exe)
Terminal:
npx @mcpjam/inspector@latestAfter it starts, open the printed localhost URL in your browser.
Docker:
docker run -p 127.0.0.1:6274:6274 mcpjam/mcp-inspectorThe app is available at http://127.0.0.1:6274.
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"
}
}
}
}