content
Notion MCP Server
Official MCP server by Notion. Create pages, query databases, search your workspace, and manage your content calendar — directly from Claude Code.
Pricing: freemium — MCP and Notion API are free on all plans. Notion AI features require Business ($18/mo) or the AI add-on ($8/mo).
Features
- Query content calendars and databases with filters and sorting
- Create and update pages — publish drafts from the terminal
- Search your entire marketing workspace from Claude Code
- Manage database rows — update campaign status, add entries
- Comment on pages for team collaboration
- Edit pages in Markdown format
Setup Instructions
**Option A — Hosted (recommended, uses OAuth):**
``
claude mcp add --transport http notion https://mcp.notion.com/mcp
`
Complete the OAuth flow in your browser when prompted.
**Option B — Local (uses API token):**
1. Create an integration at notion.so/profile/integrations
2. Copy the Internal Integration Secret (starts with ntn_)
3. Grant the integration access to your marketing pages
`json
{
"mcpServers": {
"notion": {
"command": "npx",
"args": ["-y", "@notionhq/notion-mcp-server"],
"env": {
"NOTION_TOKEN": "ntn_your_token_here"
}
}
}
}
``Added: 2026-02-23