Mmk notion view
Claude Code skills for Magic Meal Kits CLI — Notion, Paymint, Threads, YouTube automation
npx -y skills add magic-meal-kits/mmk-skills --skill mmk-notion-viewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Manage Notion database views — list, get, create, update, delete. Triggers on "database view", "notion view", "list views", "create view", "update view", "delete view", "get view".
SKILL.md
2.0 KB, 535 tokens by cl100k_base, as published. Nobody here has run it
MMK Notion — View Commands
Prerequisite: Read
../mmk-shared/SKILL.mdfor auth, global flags, and error handling. Parent:mmk-notion
Always use -o json when parsing results or composing with other commands.
list — List all views for a database
mmk notion view list --database-id <db-id> -o json
Required: --database-id
get — Get a specific view by ID
mmk notion view get <view_id> -o json
Required: <view_id> (positional)
create — Create a new view for a database
mmk notion view create --database-id <db-id> --data-source-id <ds-id> --name "My View" --type table -o json
mmk notion view create --database-id <db-id> --data '{"data_source_id":"...","name":"My View","type":"board"}' -o json
Required: --database-id, one of --data-source-id or --data
Optional:
| Flag | Description |
|---|---|
--name | View name |
--type | View type: table, board, timeline, calendar, list, gallery |
--data | Raw JSON request body |
Use mmk notion view get <view_id> -o json to retrieve the data_source_id from an existing view.
update — Update an existing view
mmk notion view update <view_id> --data '{"name":"New Name"}' -o json
Required: <view_id> (positional), --data
delete — Delete a view
mmk notion view delete <view_id> -o json
Required: <view_id> (positional)
See Also
- mmk-shared — Auth, global flags, error handling
- mmk-notion — All Notion commands overview
- mmk-notion-database — Database schema, query, insert, update, upsert, delete, AI summary