Content
1// ── Claude Code (recommended) ────────────────────────────────────────────────
2// claude mcp add --transport http notion https://mcp.notion.com/mcp
3//
4// ── Claude Desktop (via mcp-remote) ──────────────────────────────────────────
5{
6 "mcpServers": {
7 "notion": {
8 "command": "npx",
9 "args": ["-y", "mcp-remote", "https://mcp.notion.com/mcp"]
10 }
11 }
12}
13
14// ── Setup ────────────────────────────────────────────────────────────────────
15// Uses OAuth — no API key needed. On first use, Claude will open a browser
16// window to authorize access to your Notion workspace.
17//
18// Official docs: https://developers.notion.com/docs/mcp
19//
20// ── Available tools ──────────────────────────────────────────────────────────
21// notion_search search across all pages and databases
22// notion_retrieve_page get a page's full content
23// notion_create_page create a new page
24// notion_update_page update page properties
25// notion_retrieve_database get database schema and entries
26// notion_query_database filter and sort database rows
27// notion_create_database_item add a row to a database
28// notion_append_block append content blocks to a page
29