Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

notion-mcp-skillNotion MCP 技能

Agent Skill

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

总安装

272

周安装

11

GitHub Stars

105

下载量

85
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/holon-run/uxc --skill notion-mcp-skill

简介

notion-mcp-skill 用于处理 Notion 页面、数据库和工作区内容。

  • 适合查询知识库、创建记录或同步外部信息到 Notion。
  • 支持读取页面内容和结构化数据,便于知识管理。
  • 写入前需确认集成已授权到目标页面或数据库。notion-mcp-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 批量修改属性时应核对字段名称和类型,避免格式错误。

SKILL.md

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

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.25%
按下载量换算29

Claude

30.82%
按下载量换算26

Cursor

16.38%
按下载量换算14

Gemini CLI

8.77%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills