Skip to content
MCP-BridgeMCP-Bridge
Productivity

Notion API MCP Config

Create and manage Notion pages, databases, and blocks through your AI agent.

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/notion.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

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

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "notion": {
      "url": "https://mcpbridge.org/config/notion.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "notion": {
      "url": "https://mcpbridge.org/config/notion.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/notion.json to fetch programmatically.

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

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/notion.json

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