| name | notion-hub |
| version | 1.0.0 |
| description | Read and write Notion data using Python + notion-client SDK. Authenticated via NOTION_API_KEY env var.
Supports search, page CRUD (Markdown↔Blocks bidirectional conversion), database schema/query/create/add-row,
block-level operations (append/update/delete), and comments.
Trigger this skill whenever the user mentions "Notion", "notion", "notion-hub", "Notion page",
"Notion database", "read Notion", "write Notion", "Notion API", or any scenario requiring
programmatic read/write access to Notion data.
|
Notion Hub
Read/write Notion via notion-client Python SDK. All operations through a single CLI script.
Prerequisites
- Environment variable:
NOTION_API_KEY — Notion Internal Integration Token
- uv: The script uses uv inline script metadata (
notion-client>=3.0.0, httpx>=0.27). Dependencies are auto-installed on first uv run, no manual pip install needed.
- Integration access: The integration must be connected to target pages/databases in Notion UI (Share → Connections → add integration)
CLI Script
Path: /var/minis/skills/notion-hub/scripts/notion_hub.py
Run: uv run --script --cache-dir /root/.cache/uv /var/minis/skills/notion-hub/scripts/notion_hub.py <command> [options]
Alias for brevity:
NH="uv run --script --cache-dir /root/.cache/uv /var/minis/skills/notion-hub/scripts/notion_hub.py"
Commands Reference
Search & Discovery
$NH search "meeting notes"
$NH search "project" --filter page
$NH search --filter database
$NH search "Q1" --sort descending --limit 5
$NH users
$NH users --me
Pages — Read
$NH page-get <page_id_or_url>
$NH page-get <page_id> --raw
$NH page-read <page_id>
$NH page-read <page_id> --depth 5
$NH page-read <page_id> -o /var/minis/workspace/page.md
$NH page-read "https://notion.so/My-Page-abc123def456..."
Pages — Write
$NH page-create --page-id <parent_id> --title "New Page" --icon "📝"
$NH page-create --database-id <db_id> --properties '{"Name":{"title":[{"text":{"content":"Task 1"}}]}}'
$NH page-write <page_id> --text "# Hello\n\nThis is a paragraph.\n\n- Item 1\n- Item 2"
$NH page-write <page_id> --file /var/minis/workspace/content.md
$NH page-write <page_id> --text "Fresh content" --replace
$NH page-update <page_id> --properties '{"Status":{"status":{"name":"Done"}}}'
$NH page-update <page_id> --icon "✅"
$NH page-update <page_id> --archived true
Databases
$NH db-get <database_id>
$NH db-get <database_id> --raw
$NH db-query <database_id>
$NH db-query <database_id> --limit 20
$NH db-query <database_id> --filter '{"property":"Status","status":{"equals":"In Progress"}}'
$NH db-query <database_id> --sorts '[{"property":"Created","direction":"descending"}]'
$NH db-query <db_id> --filter '{"and":[{"property":"Status","status":{"equals":"Done"}},{"property":"Priority","select":{"equals":"High"}}]}'
$NH db-add-row -d <database_id> --props '{"Name":"My Task","Status":"In Progress","Priority":"High","Due Date":"2024-03-15"}'
$NH db-add-row -d <database_id> --title "Simple row with just a title"
$NH db-create --page-id <parent_page_id> --title "Task Tracker" --properties '{
"Name": {"title": {}},
"Status": {"status": {}},
"Priority": {"select": {"options": [{"name":"High"},{"name":"Medium"},{"name":"Low"}]}},
"Due Date": {"date": {}},
"Tags": {"multi_select": {"options": [{"name":"Bug"},{"name":"Feature"}]}},
"Assignee": {"people": {}},
"Done": {"checkbox": {}}
}'
$NH db-update <db_id> --title "New Title"
$NH db-update <db_id> --properties '{"New Column": {"rich_text": {}}}'
Blocks (Page Content)
$NH blocks-get <page_id>
$NH blocks-get <page_id> --raw
$NH blocks-get-all <page_id>
$NH blocks-get-all <page_id> --depth 5
$NH block-append <page_id> --text "A new paragraph"
$NH block-append <page_id> --text "Item A\\nItem B\\nItem C" --type bulleted_list_item
$NH block-append <page_id> --blocks '[{"type":"heading_2","heading_2":{"rich_text":[{"text":{"content":"Section"}}]}},{"type":"paragraph","paragraph":{"rich_text":[{"text":{"content":"Content here"}}]}}]'
$NH block-update <block_id> --content '{"paragraph":{"rich_text":[{"text":{"content":"Updated text"}}]}}'
$NH block-delete <block_id>
Comments
$NH comments-list <page_id>
$NH comment-create "This looks good!" --page-id <page_id>
$NH comment-create "Agreed" --discussion-id <discussion_id>
Notion Filter Syntax Quick Reference
{"property": "Name", "rich_text": {"contains": "keyword"}}
{"property": "Status", "select": {"equals": "Done"}}
{"property": "Tags", "multi_select": {"contains": "Bug"}}
{"property": "Status", "status": {"equals": "In Progress"}}
{"property": "Done", "checkbox": {"equals": true}}
{"property": "Due", "date": {"before": "2024-04-01"}}
{"property": "Due", "date": {"on_or_after": "2024-01-01"}}
{"property": "Score", "number": {"greater_than": 80}}
{"and": [{"property": "Status", "status": {"equals": "Done"}}, {"property": "Priority", "select": {"equals": "High"}}]}
{"or": [{"property": "Status", "status": {"equals": "Done"}}, {"property": "Status", "status": {"equals": "Archived"}}]}
Notion Sort Syntax
[{"property": "Created", "direction": "descending"}]
[{"property": "Name", "direction": "ascending"}]
[{"timestamp": "last_edited_time", "direction": "descending"}]
Property Value Syntax for db-add-row --props
The --props JSON maps property names to simple values. The script auto-detects types from the database schema:
| Type | Value format | Example |
|---|
| title | string | "My Title" |
| rich_text | string | "Some text" |
| number | number | 42 |
| select | string (option name) | "High" |
| multi_select | comma-separated string or array | "Bug,Feature" or ["Bug","Feature"] |
| status | string (status name) | "In Progress" |
| date | ISO date string or {start, end} | "2024-03-15" |
| checkbox | boolean | true |
| url | string | "https://..." |
| email | string | "a@b.com" |
| relation | comma-separated IDs or array | "id1,id2" |
| people | comma-separated user IDs | "user_id" |
| files | URL string or array of URLs | "https://file.png" |
Workflow Tips
- First time: Run
$NH search or $NH search --filter database to discover accessible pages/databases and get their IDs.
- Before writing to a database: Run
$NH db-get <id> to see the schema (property names, types, select options).
- Reading a page: Use
page-read for Markdown output — much more readable than raw blocks.
- Writing a page: Use
page-write --text with Markdown — the script auto-converts to Notion blocks.
- IDs: Both raw UUIDs and full Notion URLs are accepted for all ID parameters.
- Pagination: All list/query commands auto-paginate. Use
--limit to cap results.
Error Handling
All errors return {"error": "..."} JSON. Common issues:
- 401: Invalid or expired token
- 403: Integration not connected to the target page/database
- 404: Page/database not found or not accessible
- 429: Rate limited (auto-retry is not implemented; wait and retry)
Security Notes
- NOTION_API_KEY: Never echo, print, or expose the token value in conversation. Always reference via
$NOTION_API_KEY.
- User emails: The
users command auto-masks email addresses (e.g. w***3@gmail.com). Do not attempt to retrieve or display full emails.
- File URLs: Notion internal file URLs contain signed AWS tokens. The script auto-strips these from Markdown/block output. If you need to download a file, use
blocks-get --raw and handle the URL in a script without printing it.
- Recursion depth:
blocks-get-all and page-read cap at depth 10 to prevent API call storms.