# io.github.shck-dev/notion-mcp (npm · @shck-dev/notion-mcp)

Notion MCP server — search, export, and import pages as markdown

- Trust score: 85/100 (high trust)
- Change this week: −11
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@shck-dev/notion-mcp`: 85/100 (this document), [markdown](https://verifymcp.io/servers/shck-dev-notion-mcp/shck-dev-notion-mcp.md), [page](https://verifymcp.io/servers/shck-dev-notion-mcp/shck-dev-notion-mcp)

## Channel facts

- Registry: `npm`
- Package: `@shck-dev/notion-mcp`
- Version: `0.5.2`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 100/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - No production dependencies, so there is no dependency health to assess.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to shck-dev/notion-mcp).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 40 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1434 tokens (~95/item across 15 items; 13 tools + 2 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add shck-dev-notion-mcp -- npx -y @shck-dev/notion-mcp
```

### Codex

```bash
codex mcp add shck-dev-notion-mcp -- npx -y @shck-dev/notion-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "shck-dev-notion-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@shck-dev/notion-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add shck-dev-notion-mcp --command npx --arg -y --arg @shck-dev/notion-mcp
```

### Hermes

```yaml
mcp_servers:
  shck-dev-notion-mcp:
    command: "npx"
    args: ["-y", "@shck-dev/notion-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "shck-dev-notion-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@shck-dev/notion-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 85, +4)

- [functional improvement] Stability: unverified → 0.23

### 2026-07-31 (score 81, +3)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 78, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 96, +37)

- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] Schema quality: unverified → 100
- [functional] First check of Schema quality: pass
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: excellent

### 2026-07-26 (score 59)

First indexed and scored.

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

## MCP tools (13)

### `notion_search` (~80 tokens)

Full-text search across all pages in your Notion workspace. Returns page titles, IDs, and last edited timestamps. Searches everything you can see in the browser — no need to explicitly share pages.

Input parameters:

- `limit` (number): Maximum number of results to return (default: 10)
- `query` (string, required): Search query (matches page titles and content)

### `notion_export_page` (~126 tokens)

Export a Notion page as clean markdown. Converts headings, lists, code blocks, tables, bold/italic, links, images, and nested content into standard markdown. Image links resolve to viewable URLs; pass image_dir to download images locally and link to the files instead.

Input parameters:

- `image_dir` (string): Optional absolute directory: download images here and link to the local files (markdown should be saved beside this folder). Without it, image links are public CDN URLs.
- `page_id` (string, required): Notion page ID (32-char hex) or full Notion URL

### `notion_import_page` (~122 tokens)

Write markdown content to a Notion page. DESTRUCTIVE: replaces ALL existing blocks on the page with content parsed from the markdown string. To add content without removing what is already there, use notion_append_to_page instead. Supports headings, lists, to-do checkboxes, code blocks, tables, and inline formatting (bold, italic, strikethrough, code, links).

Input parameters:

- `markdown` (string, required): Markdown content to write to the page
- `page_id` (string, required): Notion page ID (32-char hex) or full Notion URL

### `notion_import_page_from_file` (~97 tokens)

Write a local markdown file to a Notion page. DESTRUCTIVE: reads the file and replaces ALL existing page blocks with the parsed content. To add content without removing what is already there, use notion_append_to_page_from_file instead.

Input parameters:

- `file_path` (string, required): Absolute path to a local .md file
- `page_id` (string, required): Notion page ID (32-char hex) or full Notion URL

### `notion_append_to_page` (~105 tokens)

Append markdown content to the END of a Notion page, after the existing blocks. Non-destructive — existing content is left untouched. Supports headings, lists, to-do checkboxes, code blocks, tables, and inline formatting (bold, italic, strikethrough, code, links).

Input parameters:

- `markdown` (string, required): Markdown content to append to the page
- `page_id` (string, required): Notion page ID (32-char hex) or full Notion URL

### `notion_append_to_page_from_file` (~79 tokens)

Append a local markdown file to the END of a Notion page, after the existing blocks. Non-destructive — existing content is left untouched.

Input parameters:

- `file_path` (string, required): Absolute path to a local .md file
- `page_id` (string, required): Notion page ID (32-char hex) or full Notion URL

### `notion_create_page` (~106 tokens)

Create a new Notion page as a child of an existing page. Optionally populate it with markdown content. Returns the URL of the created page.

Input parameters:

- `icon` (string): Optional page icon (emoji like "📄" or URL)
- `markdown` (string): Optional markdown content for the page body
- `parent_page_id` (string, required): Parent page ID (32-char hex) or full Notion URL
- `title` (string, required): Title of the new page

### `notion_create_page_from_file` (~103 tokens)

Create a new Notion page and populate it from a local markdown file. Returns the URL of the created page.

Input parameters:

- `file_path` (string, required): Absolute path to a local .md file
- `icon` (string): Optional page icon (emoji like "📄" or URL)
- `parent_page_id` (string, required): Parent page ID (32-char hex) or full Notion URL
- `title` (string, required): Title of the new page

### `notion_add_image` (~127 tokens)

Add an image to the END of a Notion page. `image_path` is either an absolute path to a local image file (uploaded to Notion) or an http(s) URL (referenced as an external image). Non-destructive — appended after existing blocks.

Input parameters:

- `caption` (string): Optional caption (also used as markdown alt text on export)
- `image_path` (string, required): Absolute path to a local image file, or an http(s) image URL
- `page_id` (string, required): Notion page ID (32-char hex) or full Notion URL

### `notion_list_comments` (~89 tokens)

List all open comment discussions on a page (and its child blocks). Returns discussion IDs, anchored text context, authors, timestamps, and comment bodies. Use this to read feedback/review threads on any page.

Input parameters:

- `include_resolved` (boolean): Include resolved discussions (default: false)
- `page_id` (string, required): Notion page ID (32-char hex) or full Notion URL

### `notion_add_comment` (~162 tokens)

Start a new comment discussion on a block. If `anchor_text` is provided, the comment is anchored inline to that exact substring of the block's text (the Notion UI highlights it yellow). Without `anchor_text`, the discussion attaches at the block level. Supports markdown **bold**, *italic*, `code`, and [links](url) in the comment body.

Input parameters:

- `anchor_text` (string): Optional: substring of the block's text to anchor the comment to (inline comment). Must match exactly.
- `block_id` (string, required): Notion block ID (32-char hex) — the block containing the text to comment on. A page ID also works (block-level only).
- `text` (string, required): Comment body (supports markdown inline formatting)

### `notion_reply_comment` (~66 tokens)

Reply to an existing comment discussion thread. Use the discussion ID returned from notion_list_comments or notion_add_comment.

Input parameters:

- `discussion_id` (string, required): Discussion ID (32-char hex) from list_comments or add_comment
- `text` (string, required): Reply body (supports markdown inline formatting)

### `notion_init` (~137 tokens)

Set up Notion credentials by pasting a "Copy as cURL" of any notion.so/api/v3 request from your browser DevTools (Network tab → right-click a request → Copy as cURL). Extracts the token/user/workspace and saves them to ~/.notion-mcp/config.json. If you have multiple workspaces, it lists them — call again with space_id. Runs without existing credentials.

Input parameters:

- `curl` (string, required): The full "Copy as cURL" string from DevTools → Network → a /api/v3 request
- `space_id` (string): Optional workspace id (when you have more than one)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/shck-dev-notion-mcp/shck-dev-notion-mcp#diagnostics

## Score history

- 2026-08-03: 85
- 2026-08-02: 81
- 2026-08-01: 81
- 2026-07-31: 81
- 2026-07-30: 78
- 2026-07-29: 96
- 2026-07-28: 96
- 2026-07-27: 96
- 2026-07-26: 59

## Links

- npm package: https://www.npmjs.com/package/@shck-dev/notion-mcp
- Socket report: https://socket.dev/npm/package/@shck-dev/notion-mcp
- Repository: https://github.com/shck-dev/notion-mcp
- Changelog RSS feed: https://verifymcp.io/servers/shck-dev-notion-mcp/shck-dev-notion-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/shck-dev-notion-mcp/shck-dev-notion-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/shck-dev-notion-mcp/shck-dev-notion-mcp
