zapier/notion
Agent-callable Notion tools for searching pages and databases, reading and creating pages, querying data sources, appending content, and managing schemas. Use when the user mentions Notion or wants to find, read, create, or edit Notion content, even if they don't name Notion explicitly.
npx skills add https://github.com/zapier/connectors --skill notion
_Independent, unofficial connector for Notion. Not affiliated with, endorsed by, or sponsored by Notion. "Notion" is a trademark of its owner, used only to identify the service this connector works with._
Tools for working with a Notion workspace against the Notion API (https://api.notion.com/v1/, API version 2025-09-03): find pages and data sources, read and create pages, query data-source rows, append and edit block content, manage database / data-source schemas, read and post comments. 24 scripts across search, read, write, schema, comments, and cross-workspace copy. This version uses Notion's data sources model: a _database_ is a container that holds one or more _data sources_, and a _data source_ carries the property schema + the rows (pages).
This is an agentskills.io skill.
If the connector has not been installed as a skill yet, install it first with npx skills add zapier/connectors --skill notion (or your harness's own skill-install mechanism), then continue here. Installing the skill copies these files, not dependencies. Before running the CLI, a local MCP server, or zapier-sdk auth commands, run npm install --omit=dev here once. Importing the published package as a dependency in your own project instead? That npm install already resolves everything — see references/use-as-sdk.md.
The connector runs on Node.js 22.18+. Pick the reference that matches how you're running it, and load it before doing anything else:
| You have... | Load |
| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------ |
| An MCP-aware client — tools may already be loaded (e.g. mcp__notion__<tool>), or you can register a local server yourself (or guide the user to) | references/use-as-mcp.md |
| Terminal / subprocess access (you can run node) | references/use-as-cli.md |
| Only your own code, importing this package as a dependency | references/use-as-sdk.md |
| No tool access, no terminal, no ability to import this package — you write your own code that calls the Notion API directly (e.g. a code-execution sandbox) | references/use-as-recipe.md |
All scripts use the single connection notion, except copyPage, which uses two slots (source + target) to copy a page across workspaces.
| Script | Script name | Connections | Description |
| ------------------------------------------------------------------ | --------------------- | ------------------ | ------------------------------------------------------------------------------------------------- |
| scripts/search.ts | search | notion | Search pages and data sources by title (the id-resolution entry point). |
| scripts/getPage.ts | getPage | notion | Retrieve a page's metadata + property values by id. |
| scripts/getDatabase.ts | getDatabase | notion | Retrieve a database container and its list of data sources. |
| scripts/getDataSource.ts | getDataSource | notion | Retrieve a data source's property schema (names, types, options). |
| scripts/queryDataSource.ts | queryDataSource | notion | Query the rows (pages) of a data source with filter / sorts. |
| scripts/getBlockChildren.ts | getBlockChildren | notion | List the child blocks (body content) of a page or block. |
| scripts/getBlock.ts | getBlock | notion | Retrieve a single block by id. |
| scripts/getPageAsMarkdown.ts | getPageAsMarkdown | notion | Retrieve a page's body content as Markdown. |
| scripts/getPageProperty.ts | getPageProperty | notion | Retrieve a single (paginated) page property value. |
| scripts/listComments.ts | listComments | notion | List unresolved comments on a page or block. |
| scripts/listUsers.ts | listUsers | notion | List workspace users (members + bots). |
| scripts/getUser.ts | getUser | notion | Retrieve a single user by id. |
| scripts/getBotUser.ts | getBotUser | notion | Retrieve the bot user for the current token (integration identity). |
| scripts/createPage.ts | createPage | notion | Create a page: a row in a data source (parent.data_source_id) or a sub-page (parent.page_id). |
| scripts/updatePage.ts | updatePage | notion | Update a page's properties, icon, cover, parent (move), or trash state (in_trash). |
| scripts/appendBlockChildren.ts | appendBlockChildren | notion | Append content blocks to the end of a page or block. |
| scripts/updateBlock.ts | updateBlock | notion | Update a single block's content or archive it. |
| scripts/deleteBlock.ts | deleteBlock | notion | Delete a block (moves it to the trash; reversible). |
| scripts/createDatabase.ts | createDatabase | notion | Create a database under a page with an initial data source schema. |
| scripts/updateDatabase.ts | updateDatabase | notion | Update a database container's title / icon / cover / parent / inline / trash. |
| scripts/createDataSource.ts | createDataSource | notion | Add a new data source (schema) to an existing database. |
| scripts/updateDataSource.ts | updateDataSource | notion | Update a data source's schema (add / rename / retype / remove properties). |
| scripts/createComment.ts | createComment | notion | Add a comment to a page or reply to an existing thread. |
| scripts/copyPage.ts | copyPage | source, target | Copy a page (title + top-level blocks) from one workspace to another. Two Notion connections. |
Every shape passes auth as one connection selector, not the secret — a [<resolver>:]<value> string. Every connector accepts zapier:<connection-id> (Zapier-managed auth — routes through Zapier's auth, retries, and governance layer); some also accept one or more direct-token resolvers (naming and count vary per connector) — check this connector's own resolvers rather than assuming. The <resolver>: prefix is optional; a bare value goes to the first resolver that claims it — a UUID-shaped bare value always claims zapier:. Each script declares the connections it needs and the resolvers each accepts. The exact syntax for passing a connection (and how to see this connector's resolver list) differs by shape — see the reference you loaded above.
Checking what's already configured first? Don't dump environment values to do it — env or env | grep <name> prints the value along with the name, leaking a live credential into the transcript if one is set. Check names only (env | cut -d= -f1 | grep -i <name>) or test a known name directly ([ -n "$VAR_NAME" ]).
No connection yet? Pick one — and follow the reference's own flow to obtain it; never just ask the user for a connection id or token as if they already have one memorized:
| | Load |
| ------------------------------------ | ---------------------------------------------------------------------- |
| Pass the credential directly | references/use-without-zapier.md |
| Route it through a Zapier connection | references/use-with-zapier.md |
Every script returns a { data, meta } envelope:
data — the script's result (the shape its outputSchema declares; see the reference you loaded above for how to inspect a script's exact schema in your shape).meta.outputDataValidation — what validating data did:{ skipped: false, droppedPaths: null } — validated, nothing removed.{ skipped: false, droppedPaths: [...], instruction } — validated, but those paths were stripped from data: fields the script returned from the API that the outputSchema doesn't declare. If you need them, re-run with output validation skipped.{ skipped: true } — validation was bypassed; data is the raw, unchecked script output.Reading dropped fields / skipOutputDataValidation. To receive the raw, unvalidated result, opt out of output validation (the exact syntax differs by shape — see the reference you loaded above). Input validation is never skipped.
Trimming the result / filterOutputData. To shrink a large result down to the fields you need, pass a jq expression that post-processes data (again, exact syntax per shape). The jq runs against data only, NOT the { data, meta } envelope, so write it rooted at data (run the script's --help — or your shape's equivalent — to see its output schema). The transformed value replaces data, meta is preserved, and the result is NOT re-validated against the output schema.
Disambiguation before a write. Before writing to a page or row you looked up by name (e.g. update a page found via search, or a row found via queryDataSource), count the exact case-insensitive title matches:
parent, url, or last_edited_time) and ask the user which one they mean. Don't pick arbitrarily and don't write to all of them.Unsupported operations — say so and stop; don't fake it with another tool. This catalog deliberately does not:
updatePage in_trash, blocks via deleteBlock (reversible). There is no hard delete.listUsers / getUser are read-only.If asked for any of these, tell the user it's unsupported and stop — don't reach for an unrelated tool to approximate it.
Load the matching reference file before working in that area:
| Reference | Covers | Load it when |
| ---------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
| references/notion-api-gotchas.md | Versioning + the 2025-09-03 data-sources model, auth/sharing, the error envelope + code table, rate limits, size limits, pagination, ID/URL formats, archive/trash, search-matches-titles-only, 25-reference truncation. | Debugging an error or a 404, paginating a list, resolving an id, or reasoning about the database vs data-source split. |
| references/notion-blocks.md | The typed block object, common block types, the rich_text shape, appending children (limits + nesting), why updateBlock can't change a block's type. | Building or editing page content — appendBlockChildren, createPage (children), updateBlock. |
| references/notion-properties.md | The property-schema object + type list, and the per-type page property value shapes. | Defining a schema (createDatabase, createDataSource) or writing property values (createPage, updatePage). |
| references/notion-query.md | The filter object (single + compound and/or), per-type conditions, the sorts array, the 10,000-result ceiling. | Calling queryDataSource with a filter or sort. |
Take zapier/notion from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npm, npx.
Without those the skill loads but fails at the first command.