notion-full-mcp
Provides tools for managing Notion workspaces: search and retrieve pages, read page content recursively, edit blocks (text, headings, lists, tables, images, files), insert and delete blocks, manage comments, query databases, upload files to Notion storage, manipulate table rows, snapshot and restore pages, and copy or restore pages across parents.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@notion-full-mcpdeep read the page titled 'Project Alpha'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
notion-full-mcp
Full-featured Notion MCP server with deep page reading, surgical block editing, snapshot/restore, file uploads (Notion-hosted images and PDFs), table row manipulation, page restore from trash, destructive page copy across parents, and all block types including tables.
What's new in v0.3.0
Page restore from trash.
restore_pageexplicitly unarchives a page by sendingarchived=False. This is the counterpart todelete_blockon a page and works around the intentional safety guard inupdate_pagethat blocksarchived=False. Cascaded child archives are restored automatically when the parent is restored.Destructive page copy across parents.
copy_page_to_parentis the workaround for Notion's public API not supporting parent changes. Recreates the page at the target parent with the same title, icon, and content, then archives the original. Handles paragraphs, headings, lists, tables, dividers, code blocks, and image/file blocks. Refuses to run if the source has nestedchild_pagedescendants (copy those manually).move_pagedeprecated and now raises. Notion'sPATCH /pages/{id}endpoint silently ignores parent field changes -- calls return HTTP 200 but do nothing. Themove_pagetool now returns a clear error pointing callers tocopy_page_to_parentor manual drag-and-drop in the Notion sidebar.
What's new in v0.2.0
Notion file uploads. Upload images and files directly to Notion's own workspace storage instead of relying on external hosts like imgur. Works for PNG, JPEG, SVG, GIF, PDF, and any other Notion-supported attachment type.
Image block helpers.
upload_image_as_blockuploads a file and inserts it at a position in one call.replace_image_blockswaps an existing image's content while preserving its position in the parent.download_image_blockpulls any image block's file to disk.Table row manipulation.
insert_table_rowadds a row to an existing table with automatic width validation.update_table_cellreplaces the text of a single cell. No more rebuild-the-whole-table for small edits.
Install
pip install notion-full-mcp
# or
uv pip install notion-full-mcpQuick Start
export NOTION_API_TOKEN="your-token-here"
notion-mcpClaude Code Integration
Add to ~/.claude.json under mcpServers:
{
"notion-full": {
"type": "stdio",
"command": "uvx",
"args": ["notion-full-mcp"],
"env": {
"NOTION_API_TOKEN": "your-token-here"
}
}
}Or for local development:
{
"notion-full": {
"type": "stdio",
"command": "uv",
"args": ["run", "--directory", "/path/to/notion-full-mcp", "notion-mcp"],
"env": {
"NOTION_API_TOKEN": "your-token-here"
}
}
}Tools (33)
Search & Pages
Tool | Description |
| Search pages by title |
| Search pages and/or databases |
| Get page metadata (title, parent, dates, URL) |
| Create a new page under a parent page or database |
| Update a page's title, icon, or archive status |
| DEPRECATED -- Notion's public API does not support moving pages. Returns a clear error pointing to |
| Restore a page (and its cascade-archived children) from trash |
| Recreate a page under a new parent (destructive workaround for the missing move capability; archives the original by default) |
Reading
Tool | Description |
| Read page with all nested children (recursive) |
| List direct children of a block or page |
| Get a single block by ID |
Editing
Tool | Description |
| Replace all text in a block |
| Find/replace text preserving formatting |
| Update with full rich text specification |
Inserting
Tool | Description |
| Insert a text block after a specific block (supports all block types: paragraph, heading_1/2/3, bulleted_list_item, numbered_list_item, quote, etc.) |
| Insert multiple blocks after a specific block |
| Append blocks to the end of a page |
Deleting
Tool | Description |
| Delete a block by ID |
Comments
Tool | Description |
| Add a comment to a page |
| List all comments on a page or block |
Databases
Tool | Description |
| Get database metadata and schema |
| Query a database with filters and sorts |
Users
Tool | Description |
| Get the current authenticated user/bot |
| List all workspace users |
Snapshot / Restore
Tool | Description |
| Save complete page structure as JSON |
| Restore page from a snapshot (destructive) |
Media & Files
Tool | Description |
| Upload a file to Notion's own workspace storage (returns |
| Upload an image and insert it as a new image block in one step (after a block or appended to a page) |
| Swap an existing image block's content with a newly uploaded file, preserving its position |
| Download the image file from an image block to disk — works for external URLs, Notion-hosted files, and |
| Upload any file (PDF, attachment) and insert it as a file block |
Tables
Tool | Description |
| Insert a new row into an existing table with automatic width validation |
| Replace the text of a single cell in a table row |
Notion API Token
Create a new integration
Copy the token (starts with
ntn_)Share the pages/databases you want to access with the integration
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cphoskins/notion-full-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server