notion
Installation
SKILL.md
Notion
Available Tools
-
notion_search(query?, filter_type?, page_size?): Search across all accessible pages and databases.
query(string, optional): Search text. Empty string returns all accessible pages.filter_type(string, optional):"page"or"database". Use"database"to list databases.page_size(integer, optional, default: 10, max: 100)
-
notion_fetch(page_id, include_block_ids?): Fetch a page's full content as readable markdown (metadata + all blocks in one call).
page_id(string, required): Page or database entry ID.include_block_ids(boolean, optional, default: false): If true, appends each block's ID as<!-- id:... -->. Use this when you need to update a specific block withnotion_update_block.- Returns: title, URL, last-edited time, and full body as markdown.