Back to Apps

Notion MCP Server
Supports UIby awkoy
Complete MCP implementation for Notion, enabling AI assistants to read, create, and modify pages, databases, and blocks via natural language.
0 stars
Works in:Cursorzed
Exposes:Tools
What it does
Connects AI assistants directly to the Notion API, allowing them to manage your workspace programmatically. It provides full CRUD capabilities for Notion content, meaning an AI can create task lists, update project trackers, or summarize meeting notes without manual copy-pasting.
Tools
notion_pages: Create, update, archive, restore, and search for Notion pages.notion_blocks: Retrieve, append, update, and delete blocks and child blocks.notion_database: Create, query, and update Notion databases with custom properties.notion_comments: Manage comments and discussions on pages and blocks.notion_users: Retrieve workspace user information and bot details.
Installation
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"notion-mcp-server": {
"command": "npx",
"args": ["-y", "notion-mcp-server"],
"env": {
"NOTION_TOKEN": "YOUR_NOTION_TOKEN",
"NOTION_PAGE_ID": "YOUR_NOTION_PAGE_ID"
}
}
}
}
Supported hosts
Confirmed for Claude Desktop, Cursor, Cline, and Zed.
Quick install
npx -y notion-mcp-serverInformation
- Pricing
- free
- Published
- 4/23/2026
- stars
- 0
Categories
Choose your AI client and follow the steps below.
Cursor
{
"mcpServers": {
"notion-mcp-server": {
"command": "env NOTION_TOKEN=YOUR_KEY NOTION_PAGE_ID=YOUR_PAGE_ID npx",
"args": ["-y", "notion-mcp-server"]
}
}
}Claude Desktop
{
"mcpServers": {
"notion-mcp-server": {
"command": "npx",
"args": ["-y", "notion-mcp-server"],
"env": {
"NOTION_TOKEN": "YOUR_NOTION_TOKEN",
"NOTION_PAGE_ID": "YOUR_NOTION_PAGE_ID"
}
}
}
}





