MCP Catalogs
首页

notion-mcp-server vs memory

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

notion-mcp-server
by awkoy
memory
by modelcontextprotocol
Stars★ 151★ 85,748
30天用量
综合分4477
官方
分类
Notion 集成效率工具开发者工具
知识库 / RAGAI / LLM 工具效率工具
实现语言TypeScriptTypeScript
最近提交13 个月前本月

notion-mcp-server · 概述

生产级 Notion MCP 服务器,提供全面管理页面、数据库、评论和用户的工具。

memory · 概述

一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。

notion-mcp-server · 使用场景

  • 通过自然语言命令创建和管理 Notion 页面和数据库
  • 直接从 AI 助手更新任务列表和会议记录
  • 自动化 Notion 工作区中的内容创建和组织

memory · 使用场景

  • 通过记住用户偏好、历史和关系来个性化 AI 助手交互
  • 构建维护对话历史的上下文感知聊天应用
  • 创建在 AI 模型会话间持久化的知识库

notion-mcp-server · 安装

安装

  1. **获取 Notion API 密钥**

- 在 [Notion 开发者](https://www.notion.so/my-integrations) 创建集成 - 复制您的 API 密钥 - 为您的页面启用集成

  1. **Claude Desktop 集成**

在您的配置目录中创建或编辑 mcp.json 文件:

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

在您的项目目录中创建或编辑 .cursor/mcp.json 文件:

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

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

memory · 安装

安装

Claude Desktop

添加到你的 claude_desktop_config.json 文件中:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

使用一键安装按钮或在 .vscode/mcp.json 中手动配置:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。