MCP Catalogs
首页

OpsLens vs notion-export-mcp-server

并排对比,帮你在这两个 MCP server 之间做选择。

OpsLens
by Sherin-SEF-AI
notion-export-mcp-server
by syucream
Stars★ 6★ 1
30天用量
综合分4028
官方
分类
运维基建可观测性Notion 集成
Notion 集成知识库 / RAG效率工具
实现语言PythonTypeScript
最近提交2 个月前13 个月前

OpsLens · 概述

OpsLens 利用 MCP 将 Notion 转变为 AI 驱动的 incident 响应指挥中心。

notion-export-mcp-server · 概述

通过非官方 API 将 Notion 页面导出为 Markdown 的 MCP 服务器。

OpsLens · 使用场景

  • AI 驱动的 incident 分类与严重程度评估
  • 跨 Notion、Slack 等系统的 incident 关联分析
  • 运行手册发现和自动化修复指导

notion-export-mcp-server · 使用场景

  • AI 助手可以阅读和分析 Notion 文档
  • 导出 Notion 知识库供 LLM 处理
  • 将 Notion 内容集成到 AI 驱动的工作流程中

OpsLens · 安装

安装

OpsLens 可以使用 Docker 部署或直接运行 Python。

  1. 克隆仓库:
git clone https://github.com/Sherin-SEF-AI/OpsLens.git
cd OpsLens
  1. 安装依赖:
pip install -r requirements.txt
  1. 设置环境变量:

创建 .env 文件,包含你的 Notion 集成令牌和其他配置。

  1. 运行应用程序:
python main.py

Claude Desktop 集成

将以下内容添加到 Claude Desktop config.json 中,将 OpsLens 作为 MCP 服务器集成:

{
  "mcpServers": {
    "opslens": {
      "command": "python",
      "args": ["path/to/opslens/main.py"],
      "env": {
        "NOTION_TOKEN": "your-notion-token"
      }
    }
  }
}

notion-export-mcp-server · 安装

npm install notion-export-mcp-server

添加到 Claude Desktop 配置:

{
  "mcpServers": {
    "notion-export": {
      "command": "npx",
      "args": [
        "-y",
        "notion-export-mcp-server"
      ],
      "env": {
        "NOTION_TOKEN_V2": "<您的令牌>",
        "NOTION_FILE_TOKEN": "<您的令牌>"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。