BACK TO DIRECTORY
mcpbeginner
Notion
Connects Claude Code to your Notion workspace via the Model Context Protocol. Enables reading pages and databases, creating new pages, updating existing content, searching across the workspace, and managing database entries. Useful for syncing documentation, managing project boards, and automating content workflows directly from your IDE.
1.9k STARS
26.8k DOWNLOADS
notion
notiondocswikidatabaseworkspace
INSTALL COMMAND
npx @anthropic-ai/claude-code mcp add notion -- npx -y @modelcontextprotocol/server-notionCONFIGURATION
json
1{2 "mcpServers": {3 "notion": {4 "command": "npx",5 "args": [6 "-y",7 "@modelcontextprotocol/server-notion"8 ],9 "env": {10 "NOTION_API_KEY": "<your-notion-api-key>"11 }12 }13 }14}1516// Setup steps:17// 1. Go to https://www.notion.so/my-integrations18// 2. Create a new integration19// 3. Copy the Internal Integration Token20// 4. Share your Notion pages/databases with the integration21//22// Available tools:23// - notion_search: Search across all shared pages24// - notion_get_page: Get a page's content25// - notion_create_page: Create a new page26// - notion_update_page: Update page properties27// - notion_get_database: Query a database28// - notion_create_database_entry: Add a row to a database29// - notion_get_comments: Read page comments30// - notion_add_comment: Add a comment to a page