Home/Servers/Notion MCP Server

Notion MCP Server

by Notion ยท โญ 1.0k stars ยท updated 1 months ago

Read and write Notion pages, databases, and blocks. Query databases, create pages, update content, and manage your Notion workspace through AI.

80
Very Good

Quality Score Breakdown

maintenance82/100
community79/100
documentation81/100
compatibility78/100

Use Cases

  • โœ“create Notion pages
  • โœ“query databases
  • โœ“update content
  • โœ“knowledge management

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "notion": {
      "command": "npx",
      "args": [
        "-y",
        "notion-mcp-server"
      ],
      "env": {
        "NOTION_API_TOKEN": "YOUR_NOTION_TOKEN"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "notion": {
      "command": "npx",
      "args": [
        "-y",
        "notion-mcp-server"
      ],
      "env": {
        "NOTION_API_TOKEN": "YOUR_NOTION_TOKEN"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "notion": {
        "command": "npx",
        "args": [
          "-y",
          "notion-mcp-server"
        ],
        "env": {
          "NOTION_API_TOKEN": "YOUR_NOTION_TOKEN"
        }
      }
    }
  }
}
โ† Back to all servers