Notion MCP Server

Enables AI assistants to interact with Notion's API for reading, creating, and modifying content through natural language.

Remote serverstreamable-http 165

What is the Notion MCP server?

If you already use Notion, the notion mcp server is the piece that lets your assistant work with it directly. Enables AI assistants to interact with Notion's API for reading, creating, and modifying content through natural language.

What the server does

Give your AI full read/write access to Notion with one token and one paste. This is an agent-first Notion MCP server: your AI client (Claude Code, Claude Desktop, Cursor, VS Code, Cline, Zed — anything that speaks MCP) can create pages, query databases, append blocks, apply templates, comment, and upload files in natural language.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Two — tool surface** — notion_execute (do it) + notion_describe (learn the shape). The whole API is one schema deep
  • Rate — limit + retry baked in** — token-bucket limiter (3 req/s default, NOTION_RATE_LIMIT to change) with exponential backoff on 429/5xx/timeouts, honoring
  • Self — healing validation errors** — failures return { schema, example, fix } so the model corrects bad payloads in one round-trip
  • Capability — Official Notion MCP (open source)
  • Idempotency — Not documented
  • Markdown — Page-level markdown tools
  • Templates — —
  • Whereapp.notion.com/developers/tokens+ New token
  • Scope — Everything you can see
  • Friction — None
  • NOTION_TOKEN — ✅
  • NOTION_PAGE_ID — —

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Credentials and setup notes

Configuration is passed through the environment: NOTION_TOKEN, NOTION_ALLOWED_OPERATIONS, NOTION_BLOCKED_OPERATIONS, YOUR_NOTION_TOKEN, NOTION_PAGE_ID, NOTION_DAILY_LOG_PAGE_ID, MCP_AUTH_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

Plenty of planning and project tracking servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Notion's toolset — Two, Rate, Self and 11 more — is a fair guide to whether it matches your workflow. It is maintained by awkoy; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Notion.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
Twotool surface** — notion_execute (do it) + notion_describe (learn the shape). The whole API is one schema deep.
Ratelimit + retry baked in** — token-bucket limiter (3 req/s default, NOTION_RATE_LIMIT to change) with exponential backoff on 429/5xx/timeouts, honoring Retry-After.
Selfhealing validation errors** — failures return { schema, example, fix } so the model corrects bad payloads in one round-trip.
CapabilityOfficial Notion MCP (open source)
IdempotencyNot documented
MarkdownPage-level markdown tools
Templates
Where[app.notion.com/developers/tokens](https://app.notion.com/developers/tokens) → **+ New token**
ScopeEverything **you** can see
FrictionNone
NOTION_TOKEN
NOTION_PAGE_ID
NOTION_RATE_LIMIT
NOTION_READ_ONLY

How to install the Notion MCP server

{
  "mcpServers": {
    "notion": {
      "command": "npx",
      "args": ["-y", "notion-mcp-server"],
      "env": {
        "NOTION_TOKEN": "ntn_paste_your_token_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
NOTION_TOKENCredential the server authenticates with.Yes
NOTION_ALLOWED_OPERATIONSConfiguration value read at startup.Optional
NOTION_BLOCKED_OPERATIONSConfiguration value read at startup.Optional
YOUR_NOTION_TOKENCredential the server authenticates with.Yes
NOTION_PAGE_IDConfiguration value read at startup.Optional
NOTION_DAILY_LOG_PAGE_IDConfiguration value read at startup.Optional
MCP_AUTH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Notion to Two.
  • Use Notion to Rate.
  • Use Notion to Self.

Frequently asked questions

You can create and update pages, manage databases, append blocks, archive content, and more, all through your AI assistant. This streamlines your workflow and automates Notion tasks.