Install
openclaw skills install notion-helperWork with Notion databases, pages, and APIs. Use when user needs to create, read, update, or delete Notion pages and databases; automate Notion workflows; sync data between Notion and other apps; or build integrations with Notion.
openclaw skills install notion-helperManage Notion workspaces via API for automation and integration.
# Install Notion client
pip install notion-client
# Set API key
export NOTION_TOKEN="secret_xxx"
# Query a database
python scripts/notion.py query --database-id <id>
# Create a page
python scripts/notion.py create-page --database-id <id> --title "Task Name"
# Get page content
python scripts/notion.py get-page --page-id <id>
See references/examples.md for detailed use cases.