notion-mcp-server

notion-mcp-server

109

Notion MCP Server is a tool for AI assistants to interact with the Notion API using natural language. It supports full CRUD operations on Notion content and is designed to work with multiple MCP-compatible clients.

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