Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

notion-mcp-skillNotion MCP 技能

Agent Skill

用于处理 Notion 页面、数据库、工作区内容和结构化记录。它适合让 Agent 查询知识库、整理页面内容、创建记录或把外部信息同步到 Notion。使用时需要确认集成是否已被授权到目标页面或数据库,并区分读取、追加和覆盖更新;涉及批量写入或修改数据库属性时,应先核对字段名称、属性类型和目标页面。

总安装

11,897

周安装

486

GitHub Stars

公开资料未说明

下载量

3,849
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:notion-mcp-skill(Notion MCP 技能)
来源仓库:https://github.com/jolestar/notion-mcp-skill
安装命令:
openclaw skills install notion-mcp-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install notion-mcp-skill

简介

通过 UXC CLI 使用 Notion MCP 操作工作区内容,包括搜索、获取和更新。

  • 适合需要批量操作页面、数据库或用户/团队的场景。
  • 支持页面和数据库的创建、更新及内容管理。
  • 安装命令:openclaw skills install notion-mcp-skill。
  • 需确认 CLI 环境配置和 API 访问权限。

SKILL.md

name
notion-mcp-skill
description
Operate Notion workspace content through Notion MCP using the UXC CLI, including search, fetch, users/teams lookup, page/database creation and updates, and comments. Use when tasks require calling Notion tools over MCP with OAuth (authorization_code + PKCE), especially when safe write controls and JSON-envelope parsing are required.

Notion MCP Skill

Use this skill to run Notion MCP operations through uxc with OAuth and guarded write behavior.

Reuse the uxc skill guidance for discovery, schema inspection, OAuth lifecycle, and error recovery. Do not assume another skill is auto-triggered in every runtime. Keep this skill executable on its own.

Prerequisites

  • uxc is installed and available in PATH.
  • Network access to https://mcp.notion.com/mcp.
  • OAuth callback listener is reachable (default examples use http://127.0.0.1:8788/callback).
  • uxc skill is available for generic discovery/describe/execute patterns.

Core Workflow (Notion-Specific)

Endpoint argument style in this skill:

  • Prefer shorthand mcp.notion.com/mcp (scheme omitted).
  • Full URL https://mcp.notion.com/mcp is also valid.
  1. Ensure endpoint mapping exists:

- uxc auth binding match mcp.notion.com/mcp

  1. If mapping/auth is not ready, start OAuth login:

- uxc auth oauth start notion-mcp --endpoint mcp.notion.com/mcp --redirect-uri http://127.0.0.1:8788/callback --scope read --scope write - Prompt user to open the printed authorization URL. - Ask user to paste the full callback URL after consent. - Complete login with uxc auth oauth complete notion-mcp --session-id <session_id> --authorization-response '<callback-url>'

  1. Bind endpoint to the credential:

- uxc auth binding add --id notion-mcp --host mcp.notion.com --path-prefix /mcp --scheme https --credential notion-mcp --priority 100

  1. Use fixed link command by default:

- command -v notion-mcp-cli - If missing, create it: uxc link notion-mcp-cli mcp.notion.com/mcp - notion-mcp-cli -h - If command conflict is detected and cannot be safely reused, stop and ask skill maintainers to pick a different fixed command name.

  1. Discover tools and inspect schema before execution:

- notion-mcp-cli -h - notion-mcp-cli notion-fetch -h - notion-fetch requires id (URL or UUID). Examples: - notion-mcp-cli notion-fetch id="https://notion.so/your-page-url" - notion-mcp-cli notion-fetch id="12345678-90ab-cdef-1234-567890abcdef" - Common operations include notion-search, notion-fetch, and notion-update-page.

  1. Prefer read path first:

- Search/fetch current state before any write.

  1. Execute writes only after explicit user confirmation:

- For notion-update-page operations that may delete content, always confirm intent first.

OAuth Interaction Template

Use this exact operator-facing flow:

  1. Start login command and wait for authorization URL output.
  2. Tell user:

- Open this URL in browser and approve Notion access. - Copy the full callback URL from browser address bar. - Paste the callback URL back in chat.

  1. Run uxc auth oauth complete notion-mcp --session-id <session_id> --authorization-response '<callback-url>'.
  2. Optionally confirm success with:

- uxc auth oauth info <credential_id>

Do not ask user to manually extract or copy bearer tokens. Token exchange is handled by uxc. Use uxc auth oauth login ... --flow authorization_code only for a single-process interactive fallback.

Guardrails

  • Keep automation on JSON output envelope; do not use --text.
  • Parse stable fields first: ok, kind, protocol, data, error.
  • Use notion-mcp-cli as the default command path for all Notion MCP calls in this skill.
  • notion-mcp-cli <operation> ... is equivalent to uxc mcp.notion.com/mcp <operation> ....
  • Use direct uxc mcp.notion.com/mcp ... only as a temporary fallback when link setup is unavailable.
  • Call notion-fetch before notion-create-pages or notion-update-page when targeting database-backed content to obtain exact schema/property names.
  • Treat operations as high impact by default:

- Require explicit user confirmation before create/update/move/delete-style actions.

  • If OAuth/auth fails, use uxc skill OAuth/error playbooks first, then apply Notion-specific checks in this skill's references.

References

  • Notion-specific auth notes (thin wrapper over uxc skill OAuth guidance):

- references/oauth-and-binding.md

  • Invocation patterns by task:

- references/usage-patterns.md

  • Notion-specific failure notes (thin wrapper over uxc skill error guidance):

- references/error-handling.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.92%
按下载量换算2,807

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills