Skip to content
MCP-Bridge
Productivity

Notion API Claude Desktop Config

Add the Notion API MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your OAuth2 in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

{
  "mcpServers": {
    "notion": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-notion"
      ],
      "env": {
        "NOTION_TOKEN": "ntn_..."
      }
    }
  }
}

Environment Variables

NOTION_TOKEN

Replace ntn_... with your actual notion token

Endpoints

POST/v1/pages

Create a page

POST/v1/databases/{database_id}/query

Query a database

GET/v1/blocks/{block_id}/children

Get block children