MCP Catalogs
Home

notion-mcp-server vs notion-export-mcp-server

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

notion-mcp-server
by awkoy
notion-export-mcp-server
by syucream
Stars★ 151★ 1
30d uses
Score4428
Official
Categories
NotionProductivityDeveloper Tools
NotionKnowledge GraphProductivity
LanguageTypeScriptTypeScript
Last commit13 mo ago13 mo ago

notion-mcp-server · Summary

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

notion-export-mcp-server · Summary

An MCP server that exports Notion pages to markdown via unofficial API.

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

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

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 ``

notion-export-mcp-server · Install

npm install notion-export-mcp-server

Add 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>"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.