Skip to main content
Glama

개념-mcp

대장간 배지

Notion API와 통합되어 개인 할 일 목록을 관리하는 간단한 MCP(Model Context Protocol) 서버입니다.

데모

데모

Related MCP server: Notion MCP Server

시각적 가이드

Notion MCP 쿼리 1

Notion MCP 쿼리 1

Notion MCP 쿼리 2

Notion MCP 쿼리 1

Notion MCP 쿼리 3

Notion MCP 쿼리 1

필수 조건

  • Python 3.11 이상

  • API 액세스가 가능한 Notion 계정

  • Notion 통합 토큰

  • 할 일 목록을 관리하려는 Notion 페이지

  • 클로드 데스크탑 클린트

설정

Smithery를 통해 설치

Smithery 를 통해 Claude Desktop용 Notion MCP를 자동으로 설치하는 방법:

지엑스피1

  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 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 라이선스. 자세한 내용은 라이선스 파일을 참조하세요.

A
license - permissive license
Not graded
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.

  • A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…

  • A Model Context Protocol server for Wix AI tools

View all MCP Connectors

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

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