notion-recipes

notion-recipes is a skill for Claude Code, Codex from Grey-Iris/easy-notion-mcp. It costs 68 tokens per session (1,454 once invoked), scanned A, original, MIT.

A set of Notion procedures for turning meeting notes into tracked action items and for repairing or changing Notion pages and database rows in bulk. Notion is a workspace for documents and structured databases.

In plain words
What is it for?
Use it to create an Action Items database from meeting notes, find or replace text across many Notion records, normalize database rows, or repair page content.
Why use it?
It helps organize decisions and tasks without manually copying every item. It also covers changes that exceed Notion's normal find-and-replace limits and avoids creating duplicate action items when rerun.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create an Action Items database from meeting notes, find or replace text across many Notion records, normalize database rows, or repair page content.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/grey-iris/easy-notion-mcp/notion-recipes
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Grey-Iris/easy-notion-mcp --skill notion-recipes
Clone the repo
git clone --depth 1 https://github.com/Grey-Iris/easy-notion-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for notion-recipes

README.md
[![agentmods](https://agentmods.dev/badge/skills/grey-iris/easy-notion-mcp/notion-recipes/github.svg)](https://agentmods.dev/skills/grey-iris/easy-notion-mcp/notion-recipes)
Your own site
<a href="https://agentmods.dev/skills/grey-iris/easy-notion-mcp/notion-recipes"><img src="https://agentmods.dev/badge/skills/grey-iris/easy-notion-mcp/notion-recipes/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for notion-recipes

Your own site · 80×15
<a href="https://agentmods.dev/skills/grey-iris/easy-notion-mcp/notion-recipes"><img src="https://agentmods.dev/badge/skills/grey-iris/easy-notion-mcp/notion-recipes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,454 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00068 $0.01454
Opus 5 $0.00034 $0.00727
Sonnet 5 $0.00014 $0.00291
Haiku 4.5 $0.00007 $0.00145

Measured 12d ago against content hash 2a02cdd2ab4c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

notion-recipes scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/notion-recipes/SKILL.md · 109 lines

How it starts

The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Notion Recipes

Use these recipes with easy-notion's MCP tools, or through the claude.ai connector when the equivalent tools are enabled. Recipe 2 (repair and find-replace) also works through the easy-notion CLI skill in skills/easy-notion-cli/. Recipe 1 does not: it needs create_database, source-block lookup with search_in_page, and structured database filters, and the current CLI surface does not expose that full workflow.

Recipe 1: Meeting Notes To Action Items

Turn a meeting-notes page or pasted notes into deduplicated rows in an Action Items database.

Safety boundary: Recipe 1 is re-run-safe and idempotent because Item Key stores the source line's stable Notion identity (<pageId>:<blockId>), not the action wording.

  1. Create the Action Items database once with create_database under the user-selected parent page:
{
  "parent_page_id": "<parent page ID>",
  "title": "Action Items",
  "schema": [
    { "name": "Name", "type": "title" },
    { "name": "Item Key", "type": "rich_text" },
    { "name": "Owner", "type": "rich_text" },
    { "name": "Due", "type": "date" },
    { "name": "Status", "type": "status" },
    { "name": "Flags", "type": "multi_select" },
    { "name": "Source", "type": "rich_text" }
  ]
}
  1. Read or receive the meeting notes. Extract only discrete action items.
  2. For each item, derive these properties:
    • Name: the action text.
    • Owner: the named assignee, or blank.
    • Due: the stated date as ISO YYYY-MM-DD, or blank.
    • Item Key: the source line's stable identity, formatted as <sourcePageId>:<sourceBlockId>.
    • Source: the meeting title plus date. Do not stash flags here.
    • Status: Not started.
    • Flags: add needs-owner if no owner, and needs-due if no due date. These are multi_select values, not text in Source.
  3. Resolve sourceBlockId with search_in_page. read_page returns markdown without block IDs. For a Notion-page source, call read_page to extract items, then for each item call search_in_page with a verbatim, distinctive substring of that item's original source line. Use the matches[].block_id whose text is that source line. If several blocks match, use a longer verbatim substring to isolate one block. For pasted notes, first save them as a Notion page with create_page, then proceed through search_in_page; do not rely on block IDs from create_page, which returns only {id,title,url}. If one source line contains multiple distinct actions, append a stable ordinal suffix in source order, such as :1 or :2, to keep keys unique.
  4. Dedupe before insert. For each item, call query_database with this exact filter shape:

Read the full file on GitHub · 109 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 109 lines · 68 tokens per session scan A 2a02cdd2ab4c

Subscribe to this mod's changes

notion-recipes is a skill published in the GitHub repository Grey-Iris/easy-notion-mcp (51 stars, last pushed 10d ago), licensed MIT. It adds 68 tokens to every session and 1,454 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.