Skip to main content
Glama

Notion MCP

ノーションMCP

Notion の API と統合して個人の ToDo リストを管理するシンプルな Model Context Protocol (MCP) サーバー。

デモ

デモ

ビジュアルガイド

Notion MCP クエリ 1

Notion MCP クエリ 1

Notion MCP クエリ 2

Notion MCP クエリ 1

Notion MCP クエリ 3

Notion MCP クエリ 1

前提条件

  • Python 3.11以上
  • APIアクセス可能なNotionアカウント
  • Notion統合トークン
  • ToDoリストを管理したいNotionページ
  • クロード・デスクトップ・クリント

設定

Smithery経由でインストール

Smithery経由で Claude Desktop 用の Notion MCP を自動的にインストールするには:

npx -y @smithery/cli install @Badhansen/notion-mcp --client claude
  1. リポジトリをクローンします。
git clone https://github.com/Badhansen/notion-mcp.git cd notion-mcp
  1. Python 環境をセットアップします。
uv venv source .venv/bin/activate uv pip install -e .
  1. Notion 統合を作成します。
  2. 統合によりデータベース/ページを共有します:
    • データベース/テーブルまたはページが存在する Notion ワークスペースを開きます。
    • 「…」メニュー→「接続を追加」をクリック
    • 統合を選択してください(名前で検索)

構成

  1. .envファイルを作成します:
cp .env.example .env
  1. .envで Notion の資格情報を設定します。
NOTION_TOKEN=<your-notion-api-token> PAGE_ID=<your-notion-page-id> NOTION_VERSION="2022-06-28" NOTION_BASE_URL="https://api.notion.com/v1"
  1. Claude Desktopで意図したとおりに使用するには、 claude_desktop_config.jsonファイルを調整する必要があります。Claude Claude Desktop -> Settings -> Developer -> Edit Configにアクセスし、 Notionサーバーの設定を追加してください。
{ "mcpServers": { "notion-mcp": { "command": "uv", "args": [ "--directory", "/Users/username/Projects/Python/notion-mcp/src" /* Path to your project */, "run", "server.py" ] } } }

発達

プロジェクト構造:

notion-mcp/ ├── docs/ ├── src/ │ └── server.py ├── .env ├── .python-version ├── README.md ├── pyproject.toml └── uv.lock

サポート機能

タスクを表示

Notion ワークスペースのすべてのタスクを表示するには、 show_all_todos関数を使用します。

{ "name": "show_all_todos", "arguments": {} }
タスクを追加

Notion ワークスペースに新しいタスクを追加するには、 add_todo関数を使用します。

{ "name": "add_todo", "arguments": { "task": "Your task description" } }
タスクの更新

Notion ワークスペース内の既存のタスクを更新するには、 complete_todo関数を使用します。

{ "name": "complete_todo", "arguments": { "task_id": "your-task-id" } }

貢献

  1. リポジトリをフォークする
  2. 機能ブランチを作成する
  3. プルリクエストを送信する

ライセンス

MITライセンス。詳細はLICENSEファイルを参照してください。

-
security - not tested
A
license - permissive license
-
quality - not tested

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

Notion の API と統合して個人の ToDo リストを管理するモデル コンテキスト プロトコル サーバー。これにより、ユーザーは Claude から直接タスクを表示、追加、更新できます。

  1. デモ
    1. ビジュアルガイド
      1. Notion MCP クエリ 1
      2. Notion MCP クエリ 2
      3. Notion MCP クエリ 3
    2. 前提条件
      1. 設定
        1. Smithery経由でインストール
      2. 構成
        1. 発達
          1. サポート機能
            1. タスクを表示
            2. タスクを追加
            3. タスクの更新
          2. 貢献
            1. ライセンス

              Related MCP Servers

              • -
                security
                A
                license
                -
                quality
                A simple Model Context Protocol (MCP) server that integrates with Notion's API to manage my personal todo list through Claude.
                Last updated -
                117
                Python
                MIT License
              • -
                security
                A
                license
                -
                quality
                A Model Context Protocol server that provides a standardized interface for interacting with Notion's API, enabling users to list databases, create pages, and search across their Notion workspace.
                Last updated -
                95
                Python
                MIT License
                • Apple
              • -
                security
                A
                license
                -
                quality
                A Model Context Profile server that enables Claude to interact with Todoist, allowing users to create, retrieve, update, and manage tasks through natural language commands.
                Last updated -
                1
                Python
                MIT License
              • A
                security
                A
                license
                A
                quality
                A Model Context Protocol server that bridges Claude with Google Tasks, allowing users to manage task lists and tasks directly through Claude interface.
                Last updated -
                15
                8
                TypeScript
                MIT License
                • Apple

              View all related MCP servers

              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/Badhansen/notion-mcp'

              If you have feedback or need assistance with the MCP directory API, please join our Discord server