Notion MCP Server
by Notion ยท โญ 1.0k stars ยท updated 1 months ago
Read and write Notion pages, databases, and blocks. Query databases, create pages, update content, and manage your Notion workspace through AI.
80
Very Good
Quality Score Breakdown
maintenance82/100
community79/100
documentation81/100
compatibility78/100
Use Cases
- โcreate Notion pages
- โquery databases
- โupdate content
- โknowledge management
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"notion": {
"command": "npx",
"args": [
"-y",
"notion-mcp-server"
],
"env": {
"NOTION_API_TOKEN": "YOUR_NOTION_TOKEN"
}
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"notion": {
"command": "npx",
"args": [
"-y",
"notion-mcp-server"
],
"env": {
"NOTION_API_TOKEN": "YOUR_NOTION_TOKEN"
}
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"notion": {
"command": "npx",
"args": [
"-y",
"notion-mcp-server"
],
"env": {
"NOTION_API_TOKEN": "YOUR_NOTION_TOKEN"
}
}
}
}
}