MCP Catalogs
Home

notion-mcp-server vs OpsLens

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

notion-mcp-server
by awkoy
OpsLens
by Sherin-SEF-AI
Stars★ 151★ 6
30d uses
Score4440
Official
Categories
NotionProductivityDeveloper Tools
Ops & InfraMonitoringNotion
LanguageTypeScriptPython
Last commit13 mo ago2 mo ago

notion-mcp-server · Summary

Production-ready MCP server for Notion API integration with comprehensive tools for managing pages, databases, comments, and users.

OpsLens · Summary

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

notion-mcp-server · Use cases

  • Create and manage Notion pages and databases through natural language commands
  • Update task lists and meeting notes directly from AI assistants
  • Automate content creation and organization in Notion workspaces

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-mcp-server · Install

Installation

  1. **Obtain a Notion API Key**

- Create an integration at [Notion Developers](https://www.notion.so/my-integrations) - Copy your API key - Enable Integration for Your Pages

  1. **Claude Desktop Integration**

Create or edit the mcp.json file in your configuration directory:

{
  "mcpServers": {
    "notion-mcp-server": {
      "command": "npx",
      "args": ["-y", "notion-mcp-server"],
      "env": {
        "NOTION_TOKEN": "YOUR_KEY",
        "NOTION_PAGE_ID": "YOUR_PAGE_ID"
      }
    }
  }
}
  1. **Cursor Integration**

Create or edit the .cursor/mcp.json file in your project directory:

{
  "mcpServers": {
    "notion-mcp-server": {
      "command": "env NOTION_TOKEN=YOUR_KEY NOTION_PAGE_ID=YOUR_PAGE_ID npx",
      "args": ["-y", "notion-mcp-server"]
    }
  }
}
  1. **General Usage**

``bash env NOTION_TOKEN=YOUR_KEY NOTION_PAGE_ID=YOUR_PAGE_ID npx -y notion-mcp-server ``

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.