Description

Notion MCP Server is a Model Context Protocol server implementation that enables AI assistants to interact with Notion's API.

Installation

npx -y notion-mcp-server-awkoy
npm install notion-mcp-server-awkoy
git clone https://github.com/awkoy/notion-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "notion-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "notion-mcp-server-awkoy"
      ]
    }
  }
}