OpsLens vs notion-export-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
OpsLens by Sherin-SEF-AI | notion-export-mcp-server by syucream | |
|---|---|---|
| Stars | ★ 6 | ★ 1 |
| 30d uses | — | — |
| Score | 40 | 28 |
| Official | — | — |
| Categories | Ops & InfraMonitoringNotion | NotionKnowledge GraphProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 13 mo ago |
OpsLens · Summary
OpsLens transforms Notion into an AI-powered incident command center using MCP for automated incident response.
notion-export-mcp-server · Summary
An MCP server that exports Notion pages to markdown via unofficial API.
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
notion-export-mcp-server · Use cases
- AI assistants can read and analyze Notion documentation
- Export Notion knowledge bases for processing by LLMs
- Integrate Notion content into AI-powered workflows
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"
}
}
}
}notion-export-mcp-server · Install
npm install notion-export-mcp-serverAdd to Claude Desktop configuration:
{
"mcpServers": {
"notion-export": {
"command": "npx",
"args": [
"-y",
"notion-export-mcp-server"
],
"env": {
"NOTION_TOKEN_V2": "<your token>",
"NOTION_FILE_TOKEN": "<your token>"
}
}
}
}