mcp-notion-server

mcp-notion-server

723

The Notion MCP Server facilitates interaction between language models and Notion workspaces by leveraging the Notion API. It supports a wide range of functionalities for managing Notion content and is optimized with Markdown conversion for efficient token use. This server is licensed under the MIT License, allowing free usage and modification.

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