MCP Catalogs
Home

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

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

mcp-notion-server
by suekou
notion-export-mcp-server
by syucream
Stars★ 892★ 1
30d uses
Score5528
Official
Categories
NotionProductivityKnowledge Graph
NotionKnowledge GraphProductivity
LanguageTypeScriptTypeScript
Last committhis month13 mo ago

mcp-notion-server · Summary

MCP server for connecting Notion to MCP-compatible clients, enabling AI agents to find, read, query and update Notion workspaces.

notion-export-mcp-server · Summary

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

mcp-notion-server · Use cases

  • AI assistants reading and summarizing Notion documentation pages
  • Automating content creation and updates in Notion databases
  • Building custom Notion interfaces with MCP Apps like Data Source Explorer

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

mcp-notion-server · Install

Quick Start

Add this server to an MCP host such as Claude Desktop:

{
  "mcpServers": {
    "notion": {
      "command": "npx",
      "args": ["-y", "@suekou/mcp-notion-server"],
      "env": {
        "NOTION_API_TOKEN": "your-integration-token"
      }
    }
  }
}

Setup Guide

  1. Create a Notion integration at [Notion integrations dashboard](https://www.notion.so/profile/integrations)
  2. Configure capabilities (read, insert, update content as needed)
  3. Grant content access to specific pages/databases
  4. Copy the internal integration token as NOTION_API_TOKEN

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.