Notion Integration
Connect to your Notion workspace to create, search, and manage content.
Usage
/notion search <query>
/notion create-page <title> [--parent <page-id>] [--content <text>]
/notion query-db <database-id> [--filter key=value] [--sort field]
/notion get-page <page-id>
/notion update-page <page-id> [title=<new-title>] [--content <text>]
Actions
- search - Search across all pages and databases in the workspace
- create-page - Create a new page with title and optional content
- query-db - Query a Notion database with optional filters and sorting
- get-page - Retrieve full content of a page by ID
- update-page - Update page title or content
Examples
/notion search "project roadmap"
/notion create-page "Sprint Planning" --content "Goals for this sprint"
/notion query-db 8a3b1c2d --filter status=In Progress --sort updated
/notion get-page abc123def
/notion update-page abc123def title="Updated Title"