drio
Open app

Notion MCP Server

Source

**Notion MCP Server** is a Model Context Protocol (MCP) server implementation that enables AI assistants to interact with Notion's API. This production-ready server provides a complete set of tools.

Catalog onlyCatalog onlySTDIO

Overview

Notion MCP Server is a Model Context Protocol (MCP) server implementation that allows AI assistants to interact with Notion's API, providing a comprehensive set of tools for managing Notion content.

To use Notion MCP Server, obtain a Notion API key, set up the integration with your Notion pages, and then use your AI assistant to perform actions like creating or updating pages.

  • Notion Integration: Seamlessly interact with Notion databases, pages, and blocks. - Universal MCP Compatibility: Works with various MCP clients including Cursor and Claude Desktop. - Data Retrieval: Fetch information from Notion pages and databases. - Content Creation: Create and update Notion content through natural language. - Batch Operations: Perform multiple operations in a single request.
  1. Automating task management by creating pages for daily tasks.
  2. Updating meeting notes in Notion through voice commands.
  3. Archiving and restoring pages as needed.

Add to your AI client

Use these steps to connect Notion MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "notion-mcp-server-awkoy": {
      "command": "npx",
      "args": [
        "-y",
        "notion-mcp-server"
      ],
      "env": {
        "NOTION_PAGE_ID": "YOUR_PAGE_ID",
        "NOTION_TOKEN": "YOUR_KEY"
      }
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "notion-mcp-server-awkoy": {
      "command": "npx",
      "args": [
        "-y",
        "notion-mcp-server"
      ],
      "env": {
        "NOTION_PAGE_ID": "YOUR_PAGE_ID",
        "NOTION_TOKEN": "YOUR_KEY"
      }
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "notion-mcp-server-awkoy": {
      "command": "npx",
      "args": [
        "-y",
        "notion-mcp-server"
      ],
      "env": {
        "NOTION_PAGE_ID": "YOUR_PAGE_ID",
        "NOTION_TOKEN": "YOUR_KEY"
      }
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "notion-mcp-server-awkoy": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "notion-mcp-server"
      ],
      "env": {
        "NOTION_PAGE_ID": "YOUR_PAGE_ID",
        "NOTION_TOKEN": "YOUR_KEY"
      }
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "notion-mcp-server-awkoy": {
      "command": "npx",
      "args": [
        "-y",
        "notion-mcp-server"
      ],
      "env": {
        "NOTION_PAGE_ID": "YOUR_PAGE_ID",
        "NOTION_TOKEN": "YOUR_KEY"
      }
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "notion-mcp-server-awkoy": {
      "command": "npx",
      "args": [
        "-y",
        "notion-mcp-server"
      ],
      "env": {
        "NOTION_PAGE_ID": "YOUR_PAGE_ID",
        "NOTION_TOKEN": "YOUR_KEY"
      }
    }
  }
}

FAQ

**What is the Model Context Protocol?**

MCP is a protocol that allows AI systems to interact with various APIs in a standardized way.

**Is there a cost to use Notion MCP Server?**

No, it is free to use as it is an open-source project.

**What programming language is used?**

The server is built using TypeScript.

Notion MCP Server — MCP Registry