# Notion

> Notion API integration - create pages, query databases, manage blocks, and sync content with Notion workspace

- Skill: `chainlesschain/notion` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add chainlesschain/notion`
- Raw SKILL.md: https://api.skillmd.com/api/skills/chainlesschain/notion/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- License: MIT
- Author: chainlesschain (https://skillmd.com/u/chainlesschain)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/chainlesschain/notion

---


# 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"
```

