Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.ai-aviate/better-notion

NPM · BETTER-MCP-NOTION · SCANNED AUG 3

Operate Notion with a single Markdown document — read, create, and update pages in one call.

Available components

+20 this week 62 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security83
  • No malware found by supply-chain analysis.Pass
  • CVE check failed: a known medium-severity CVE affects katex 0.12.0, reached via @tryfabric/martian > remark-math > micromark-extension-math > katex. A fixed version is available. View diagnostics → Fail
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (174 of 178), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency32
Schema Quality & AI Usability59
  • AI-judged instruction clarity (good).Pass
  • Context-footprint check failed: tool/resource definitions use about 2282 tokens (~253/item across 9 items; 9 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · better-mcp-notion

# add to Claude Code
claude mcp add ai-aviate-better-notion -- npx -y better-mcp-notion
# add to Codex CLI
codex mcp add ai-aviate-better-notion -- npx -y better-mcp-notion
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "ai-aviate-better-notion": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "better-mcp-notion"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add ai-aviate-better-notion --command npx --arg -y --arg better-mcp-notion
# ~/.hermes/config.yaml
mcp_servers:
  ai-aviate-better-notion:
    command: "npx"
    args: ["-y", "better-mcp-notion"]
// mcp.json
{
  "mcpServers": {
    "ai-aviate-better-notion": {
      "command": "npx",
      "args": [
        "-y",
        "better-mcp-notion"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +29
    • CVE-2024-28246 affects this package: medium security
    • CVE-2024-28245 affects this package: medium security
    • CVE-2025-23207 affects this package: medium security
    • CVE-2024-28243 affects this package: medium security
    • Provenance: unverified → fail security
    • Known CVEs: unverified → fail security
    • Install scripts: unverified → pass security
    • License: unverified → fail functional
    • Security disclosure: fail → unverified functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Stability: unverified → 0.23 functional
    • Schema quality: unverified → good functional
    • Dependency health: unverified → partial functional
    • Licence: Elastic-2.0 functional
  • 1 Aug 26 +9
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 31 Jul 26 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 42

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Vulnerabilities 4 findings
ID CVE Severity Vector Fix available
GHSA-3wc5-fcw2-2329 CVE-2024-28246 medium CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:L yes
GHSA-64fm-8hw2-v72w CVE-2024-28243 medium CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H yes
GHSA-cg87-wmx4-v546 CVE-2025-23207 medium CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L yes
GHSA-f98w-7cxr-ff2h CVE-2024-28245 medium CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L yes
Dependencies 174 packages

174 packages in the resolved dependency tree · 161 deprecated · 75 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 9 exposed · ~2,282 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
comment ~122

Add or read comments on a Notion page. ## Read comments comment({ page: "abc123" }) Returns all comments on the page as a Markdown list. ## Add a comment comment({ page: "abc123", body: "Looks good! Ready to ship." }) Adds a comment to the page. You can use the page name, ID, or URL.

NameTypeReqDescription
bodystringComment text to add. If omitted, existing comments are returned instead.
pagestringyesPage ID, URL, or name

No output schema declared.

No examples provided.

delete ~56

Archive (soft-delete) a Notion page. The page is moved to Trash and can be restored from Notion's UI. This does NOT permanently delete the page.

NameTypeReqDescription
pagestringyesPage ID or Notion URL to archive

No output schema declared.

No examples provided.

list ~350

List database records as a Markdown table, or list child pages of a page. For databases: returns a table with properties as columns. For pages: returns a numbered list of child pages. You can pass a database/page name (resolved via search) or an ID/URL. ## Filter syntax (databases only) Simple expressions matched against DB property names and types: - "Status is Done" → select/status equals - "Priority = High" → select equals - "Tags contains backend" → multi_select contains - "Done is true" → checkbox equals - "Due Date after 2026-03-01" → date after - "Score > 80" → number greater_than - "Name contains API" → title/rich_text contains Multiple filters: separate with " AND " (e.g. "Status is Done AND Priority is High") ## Sort syntax (databases only) - "Due Date ascending" or "Due Date asc" - "Created descending" or "Created desc" ## Example output # Task Board (24 items) | Name | Status | Due Date | |---|---|---| | Fix login bug | In Progress | 2026-03-01 |

NameTypeReqDescription
filterstringFilter expression (e.g. "Status is Done", "Priority > 3"). See tool description for syntax.
limitintegerMax items to return (default: 50)
sortstringSort expression (e.g. "Due Date ascending", "Created desc")
targetstringyesDatabase or page: name (e.g. 'Task Board'), ID, or Notion URL

No output schema declared.

No examples provided.

move ~89

Move a Notion page to a different parent page or database. The page keeps its content and properties; only the location changes. Example: move a page into an "Archive" page, or move a task into a different database.

NameTypeReqDescription
pagestringyesPage ID or URL of the page to move
tostringyesDestination: page name, database name, ID, or URL

No output schema declared.

No examples provided.

read ~261

Read a Notion page and return it as Markdown with YAML frontmatter. Returns frontmatter fields: - id, url: page identifiers - title: page title - parent / database: parent page ID or database ID - icon, cover: emoji or image URL - properties: database properties (if the page belongs to a database) - created, last_edited: timestamps (read-only) The body contains the page content as standard Markdown. The output can be edited and passed directly to the "write" tool to update the page. Use "depth" to include child pages in a single call (default: 1 = current page only, 2 = include children, 3 = include grandchildren). Example output: --- id: abc123-def456 title: Weekly Review database: task-db-id properties: Status: In Progress Tags: - backend --- ## Notes - Completed API design

NameTypeReqDescription
depthintegerHow deep to read child pages: 1 = this page only (default), 2 = include children, 3 = include grandchildren
pagestringyesNotion page URL (https://notion.so/...) or page ID (UUID or 32-char hex)

No output schema declared.

No examples provided.

schema ~336

View or modify database schema (columns/properties). ## Actions ### "list" (default) — View current schema schema({ database: "Task Board" }) Returns: property names, types, and select/multi_select options. ### "add" — Add a new property schema({ database: "Task Board", action: "add", property: "Priority", type: "select", options: ["Low", "Medium", "High"] }) ### "remove" — Remove a property schema({ database: "Task Board", action: "remove", property: "Old Column" }) ### "rename" — Rename a property schema({ database: "Task Board", action: "rename", property: "Due", name: "Due Date" }) ## Supported types for add title, rich_text, number, select, multi_select, date, checkbox, url, email, phone_number, status, people, files For select/multi_select, you can provide initial options.

NameTypeReqDescription
actionstring"list" (default): show schema. "add": add property. "remove": remove property. "rename": rename property.
databasestringyesDatabase name, ID, or URL
namestringNew name for rename action
optionsarrayOptions for select/multi_select (e.g. ['Low', 'Medium', 'High'])
propertystringProperty name (required for add/remove/rename)
typestringProperty type for add (e.g. select, number, rich_text)

No output schema declared.

No examples provided.

search ~180

Search the Notion workspace by title keyword. Returns a Markdown list with page/database IDs, titles, and metadata. Use the returned IDs with other tools: read (to get full content), write (to update), list (to query a database), delete, or move. Example output: # Search results: "MCP" (2 results) 1. **MCP Design Doc** (📝 page) - ID: `abc123` - Last edited: 2026-02-19 2. **Task Board** (database) - ID: `def456`

NameTypeReqDescription
filterstringFilter by type: "page", "database", or "all" (default)
limitintegerMax results (default: 10)
querystringyesSearch keyword (matched against page/database titles)

No output schema declared.

No examples provided.

update ~263

Quickly update page properties without rewriting content. Much simpler than the write tool for property-only changes. The page content (blocks) is never touched — only properties are updated. ## Parameters - page: Page ID, URL, or name - properties: Key-value object of properties to set ## Examples Update a single property: update({ page: "abc123", properties: { "Status": "Done" } }) Update multiple properties: update({ page: "My Task", properties: { "Status": "Done", "Priority": "High", "Due Date": "2026-03-01" } }) Supported value types: - Text: "value" - Number: 42 - Checkbox: true / false - Date: "2026-03-01" - Date range: "2026-03-01 to 2026-03-15" - Select/Status: "Option Name" - Multi-select: ["tag1", "tag2"] - URL: "https://..."

NameTypeReqDescription
pagestringyesPage ID, URL, or name
propertiesobjectyesProperties to update as key-value pairs (e.g. { "Status": "Done", "Priority": "High" })

No output schema declared.

No examples provided.

write ~625

Create or update Notion pages from Markdown with YAML frontmatter. Mode (default "auto"): if frontmatter has "id" → update, otherwise → create. ## Batch mode Separate multiple pages with a line containing only "===" to create/update them in one call. ## Frontmatter fields | Field | Create | Update | Description | |-------|--------|--------|-------------| | id | - | required | Page ID to update | | title | recommended | optional | Page title | | parent | required* | ignored | Parent page name or ID | | database | required* | ignored | Database name or ID (*either parent or database) | | icon | optional | optional | Emoji (e.g. 📋) or image URL | | cover | optional | optional | Cover image URL | | properties | optional | optional | DB properties (see below) | Properties are auto-matched to the database schema. Use the exact property name as key. Read-only fields from read output (url, created, last_edited, formula, etc.) are safely ignored. ## Examples ### Create a page under a parent page: ``` --- title: Meeting Notes parent: "Project Alpha" icon: "📝" --- ## Agenda - Review progress ``` ### Create a database entry: ``` --- title: Fix login bug database: "Task Board" properties: Status: In Progress Tags: - backend - urgent Due Date: "2026-03-01" --- ## Description Login fails when password contains special chars. ``` ### Update an existing page (edit output from read): ``` --- id: abc123-def456 title: Updated Title properties: Status: Done --- ## New content Body replaces all existing blocks. ``` ### Append to an existing page (add content without rewriting): Use position: "append" to add content to the end, or "prepend" to add to the beginning. Only the new content needs to be provided — existing content is preserved. ``` --- id: abc123-def456 --- ## New section added at the end ``` ### Batch create (multiple pages in one call): ``` --- title: Task 1 database: "Task Board" properties: Status: Todo --- Task 1 details === --- title: Task…

NameTypeReqDescription
markdownstringyesMarkdown with YAML frontmatter. Separate multiple pages with '===' on its own line. See tool description for format.
modestring"auto" (default): create if no id, update if id present. "create": force create. "update": force update (requires id).
positionstring"replace" (default): replace all content. "append": add to end (efficient, no need to send existing content). "prepend": add to beginning. Only affects updates.

No output schema declared.

No examples provided.