Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

notion-matonNotion maton 搜索

Agent Skill

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

总安装

2,468

周安装

106

GitHub Stars

公开资料未说明

下载量

865
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install notion-maton

简介

通过 OAuth 访问和管理 Notion 工作区,以搜索页面、创建和更新数据库、页面、块以及检索用户信息。

SKILL.md

Notion

Access the Notion API with managed OAuth authentication. Query databases, create pages, manage blocks, and search your workspace.

Quick Start Search for pages curl -X POST https://gateway.maton.ai/notion/v1/search \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -d '{ "query": "meeting notes" }'

Base URL https://gateway.maton.ai/notion/{native-api-path}

Replace {native-api-path} with the actual Notion API endpoint path. The gateway proxies requests to api.notion.com and automatically injects your OAuth token.

Required Headers

All Notion API requests require:

Notion-Version: 2025-09-03 Authorization: Bearer $MATON_API_KEY Content-Type: application/json

Authentication

Set your API key:

export MATON_API_KEY="YOUR_API_KEY"

Getting Your API Key Sign in or create an account at maton.ai Go to maton.ai/settings Copy your API key Connection Management

Manage your Notion OAuth connections at:

https://ctrl.maton.ai

List Connections curl "https://ctrl.maton.ai/connections?app=notion&status=ACTIVE" \ -H "Authorization: Bearer $MATON_API_KEY"

Create Connection curl -X POST https://ctrl.maton.ai/connections \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "app": "notion" }'

Get Connection curl https://ctrl.maton.ai/connections/{connection_id} \ -H "Authorization: Bearer $MATON_API_KEY"

Delete Connection curl -X DELETE https://ctrl.maton.ai/connections/{connection_id} \ -H "Authorization: Bearer $MATON_API_KEY"

Complete OAuth

Open the returned url from the connection response in a browser.

Specifying Connection curl -X POST https://gateway.maton.ai/notion/v1/search \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -H "Maton-Connection: 21fd90f9-5935-43cd-b6c8-bde9d915ca80" \ -d '{ "query": "meeting notes" }'

Key Concept: Databases vs Data Sources Concept Use For Database Creating databases, getting data source IDs Data Source Querying, updating schema, properties

Example response:

{ "object": "database", "id": "abc123", "data_sources": [ {"id": "def456", "name": "My Database"} ] }

API Reference Search Search for pages curl -X POST https://gateway.maton.ai/notion/v1/search \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -d '{ "query": "meeting notes", "filter": { "property": "object", "value": "page" } }'

Search for data sources curl -X POST https://gateway.maton.ai/notion/v1/search \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -d '{ "filter": { "property": "object", "value": "data_source" } }'

Data Sources Get Data Source curl https://gateway.maton.ai/notion/v1/data_sources/{dataSourceId} \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Notion-Version: 2025-09-03"

Query Data Source curl -X POST https://gateway.maton.ai/notion/v1/data_sources/{dataSourceId}/query \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -d '{ "filter": { "property": "Status", "select": { "equals": "Active" } }, "sorts": [ { "property": "Created", "direction": "descending" } ], "page_size": 100 }'

Update Data Source curl -X PATCH https://gateway.maton.ai/notion/v1/data_sources/{dataSourceId} \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -d '{ "title": [{ "type": "text", "text": { "content": "Updated Title" } }], "properties": { "NewColumn": { "rich_text": {} } } }'

Databases Get Database curl https://gateway.maton.ai/notion/v1/databases/{databaseId} \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Notion-Version: 2025-09-03"

Create Database curl -X POST https://gateway.maton.ai/notion/v1/databases \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -d '{ "parent": { "type": "page_id", "page_id": "PARENT_PAGE_ID" }, "title": [{ "type": "text", "text": { "content": "New Database" } }], "properties": { "Name": { "title": {} }, "Status": { "select": { "options": [{ "name": "Active" }, { "name": "Done" }] } } } }'

Pages Get Page curl https://gateway.maton.ai/notion/v1/pages/{pageId} \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Notion-Version: 2025-09-03"

Create Page curl -X POST https://gateway.maton.ai/notion/v1/pages \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -d '{ "parent": { "page_id": "PARENT_PAGE_ID" }, "properties": { "title": { "title": [{ "text": { "content": "New Page" } }] } } }'

Create Page in Data Source curl -X POST https://gateway.maton.ai/notion/v1/pages \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -d '{ "parent": { "data_source_id": "DATA_SOURCE_ID" }, "properties": { "Name": { "title": [{ "text": { "content": "New Page" } }] }, "Status": { "select": { "name": "Active" } } } }'

Update Page Properties curl -X PATCH https://gateway.maton.ai/notion/v1/pages/{pageId} \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -d '{ "properties": { "Status": { "select": { "name": "Done" } } } }'

Archive Page curl -X PATCH https://gateway.maton.ai/notion/v1/pages/{pageId} \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -d '{ "archived": true }'

Blocks Get Block Children curl https://gateway.maton.ai/notion/v1/blocks/{blockId}/children \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Notion-Version: 2025-09-03"

Append Block Children curl -X PATCH https://gateway.maton.ai/notion/v1/blocks/{blockId}/children \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Content-Type: application/json" \ -H "Notion-Version: 2025-09-03" \ -d '{ "children": [ { "object": "block", "type": "paragraph", "paragraph": { "rich_text": [ { "type": "text", "text": { "content": "New paragraph" } } ] } } ] }'

Delete Block curl -X DELETE https://gateway.maton.ai/notion/v1/blocks/{blockId} \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Notion-Version: 2025-09-03"

Users List Users curl https://gateway.maton.ai/notion/v1/users \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Notion-Version: 2025-09-03"

Get Current User curl https://gateway.maton.ai/notion/v1/users/me \ -H "Authorization: Bearer $MATON_API_KEY" \ -H "Notion-Version: 2025-09-03"

Notes All IDs are UUIDs Use /databases/{id} to retrieve data_sources Use curl -g if your URL contains brackets ([]) Avoid piping issues with $MATON_API_KEY in some shells Error Handling Status Meaning 400 Missing Notion connection 401 Invalid API key 429 Rate limited 4xx/5xx Notion API error Troubleshooting Check API key echo $MATON_API_KEY

Test connection curl https://ctrl.maton.ai/connections \ -H "Authorization: Bearer $MATON_API_KEY"

Common Mistake

Correct:

https://gateway.maton.ai/notion/v1/search

Incorrect:

https://gateway.maton.ai/v1/search

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.69%
按下载量换算854

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills