Skip to main content

MCP server wrapping the Notion Python SDK (v2025-09-03)

Project description

notion-mcp

MCP (Model Context Protocol) server that wraps ldraney/notion-sdk — a Python SDK for the Notion API v2025-09-03.

Overview

This project exposes the full Notion Python SDK as MCP tools, allowing AI assistants (Claude, etc.) to interact with Notion workspaces through a standardized tool interface.

Why this over the official Notion MCP servers?

The problem

There are two official Notion MCP implementations:

  1. Open-source makenotion/notion-mcp-server (TypeScript) — issues and PRs "not actively monitored," may be sunset in the future
  2. Closed-source hosted MCP at mcp.notion.com — what Claude Desktop's "Connections > Notion" uses

Neither works reliably. This is well-documented in issues like #142 ("Two Notion MCP servers, neither work well"). The open-source server was abandoned for 3.5 months after the v2025-09-03 breaking API change, shipped a broken v2.0.0 (Dec 2025), and still has open showstopper bugs in v2.1.0.

Comparison

Official open-source Official hosted ldraney-notion-mcp
Status "Not actively monitored" Closed-source Actively maintained
Language TypeScript N/A Python
API version 2025-09-03 (broken) Unknown 2025-09-03 (working)
Auth Bearer token (version header trap) OAuth only Bearer token (correct headers always)
Serialization Double-stringifies nested objects (#196) N/A Accepts both JSON strings and raw objects
Property updates Blocked by additionalProperties: false (#184) Unknown Works correctly
Database queries retrieve-a-database was missing for 5 weeks Some tools gated to Enterprise query_database auto-resolves data sources
Tool count 22 ~10 24
Convenience tools None Limited archive_page, archive_database, query_database
Install npm Claude Desktop only PyPI (uvx), .mcpb (planned)

Key advantages

  • Correct API headers always — Built on ldraney-notion-sdk, which always sends the Notion-Version: 2025-09-03 header correctly
  • LLM-friendly parameter handlingstr | dict union types so tools don't break when LLMs pass raw objects instead of JSON strings
  • Convenience tools — Operations like archive_page, archive_database, and query_database (with auto data-source resolution) reduce multi-step workflows to single calls
  • Works everywhereuvx, pip, Claude Code, any MCP-compatible client

SDK Coverage

Every method in notion-sdk maps to an MCP tool, organized by module:

Pages

Tool SDK Method Notion Endpoint
create_page create_page() POST /v1/pages
get_page get_page() GET /v1/pages/{id}
update_page update_page() PATCH /v1/pages/{id}
archive_page archive_page() PATCH /v1/pages/{id}
move_page move_page() POST /v1/pages/{id}/move

Databases

Tool SDK Method Notion Endpoint
create_database create_database() POST /v1/databases
get_database get_database() GET /v1/databases/{id}
update_database update_database() PATCH /v1/databases/{id}
archive_database archive_database() PATCH /v1/databases/{id}
query_database query_database() auto-resolves data source, then POST /v1/data_sources/{id}/query

Data Sources

Tool SDK Method Notion Endpoint
get_data_source get_data_source() GET /v1/data_sources/{id}
update_data_source update_data_source() PATCH /v1/data_sources/{id}
query_data_source query_data_source() POST /v1/data_sources/{id}/query
list_data_source_templates list_data_source_templates() GET /v1/data_sources/{id}/templates

Blocks

Tool SDK Method Notion Endpoint
get_block get_block() GET /v1/blocks/{id}
get_block_children get_block_children() GET /v1/blocks/{id}/children
append_block_children append_block_children() PATCH /v1/blocks/{id}/children
update_block update_block() PATCH /v1/blocks/{id}
delete_block delete_block() DELETE /v1/blocks/{id}

Users

Tool SDK Method Notion Endpoint
get_users get_users() GET /v1/users
get_self get_self() GET /v1/users/me

Comments

Tool SDK Method Notion Endpoint
create_comment create_comment() POST /v1/comments
get_comments get_comments() GET /v1/comments

Search

Tool SDK Method Notion Endpoint
search search() POST /v1/search

24 tools total covering the complete Notion API v2025-09-03 surface.

Architecture

notion-mcp/
├── src/
│   └── notion_mcp/
│       ├── server.py          # MCP server entry point
│       ├── tools/
│       │   ├── pages.py       # Page tools
│       │   ├── databases.py   # Database & data source tools
│       │   ├── blocks.py      # Block tools
│       │   ├── users.py       # User tools
│       │   ├── comments.py    # Comment tools
│       │   └── search.py      # Search tools
│       └── ...
├── tests/
├── pyproject.toml
└── README.md

Each tool module mirrors the SDK's mixin structure, keeping a clean 1:1 mapping.

Prerequisites

  • Python >= 3.10
  • A Notion integration API key (NOTION_API_KEY)
  • notion-sdk (installed as a dependency)

Setup

# Clone
git clone https://github.com/ldraney/notion-mcp.git
cd notion-mcp

# Install
pip install -e .

# Configure
export NOTION_API_KEY="ntn_..."

Usage

With Claude Code

Add to your Claude Code MCP config (~/.claude/settings.json or project settings):

{
  "mcpServers": {
    "notion": {
      "command": "python",
      "args": ["-m", "notion_mcp"],
      "env": {
        "NOTION_API_KEY": "ntn_..."
      }
    }
  }
}

Standalone

python -m notion_mcp

Related

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ldraney_notion_mcp-0.1.7.tar.gz (11.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ldraney_notion_mcp-0.1.7-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

File details

Details for the file ldraney_notion_mcp-0.1.7.tar.gz.

File metadata

  • Download URL: ldraney_notion_mcp-0.1.7.tar.gz
  • Upload date:
  • Size: 11.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ldraney_notion_mcp-0.1.7.tar.gz
Algorithm Hash digest
SHA256 76e71f1da3ce0ba557997e6691bebe5e74efe5b7b3329ae1bdc75aae995fcc9d
MD5 641b7b220138be996d2ee4d6730d66a3
BLAKE2b-256 1dbab3765f17f1e32262c3e9ffb921763d9fc3e74a9cfce8912b88e77eac4846

See more details on using hashes here.

Provenance

The following attestation bundles were made for ldraney_notion_mcp-0.1.7.tar.gz:

Publisher: publish.yml on ldraney/notion-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ldraney_notion_mcp-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for ldraney_notion_mcp-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 454be1e2e8154d50cd7649f149c9b63bdefac8fe01aac32b566c5d4f15845f8a
MD5 f5907217896f67d6f7c3a1a7e2b084db
BLAKE2b-256 2bbbbbd45c1b2248a65b9c8a40e377ec9c7f4381fd47d77352c927849f937bec

See more details on using hashes here.

Provenance

The following attestation bundles were made for ldraney_notion_mcp-0.1.7-py3-none-any.whl:

Publisher: publish.yml on ldraney/notion-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page