MCP Notes

rollup

Organize and synthesize daily notes into a structured rollup, highlighting key accomplishments, actionable todos, and valuable long-term insights. Ensures only meaningful content is logged for effective knowledge management.

Instructions

Synthesize my daily note to create an organized rollup of the most important notes with clear categories, connections, and action items. Optionally specify a date (YYYY-MM-DD). Only include notes that actually add long-term value. If you are unsure, call the /evaluateInsight tool to evaluate the long-term value of the thought. If you do not have enough information, stop and ask the user for more information. It is better to not log anything than log something that is not useful.

Input Schema

NameRequiredDescriptionDefault
accomplishmentsYesA list of accomplishments. Each accomplishment should be a short description of the work done in the day so that it can answer the question 'what did you do all day?'
dateNo
insightsYesA list of insights. Each insight should be a long-term storage. Things like new knowledge gained. Do not force insights - only add ones that naturally emerge from the content and would help build meaningful connections between notes.
todosNoA list of todos. Each todo should be a short description of the task to be done. A todo should be actionable.

Input Schema (JSON Schema)

{ "properties": { "accomplishments": { "description": "A list of accomplishments. Each accomplishment should be a short description of the work done in the day so that it can answer the question 'what did you do all day?'", "items": { "type": "string" }, "type": "array" }, "date": { "type": "string" }, "insights": { "description": "A list of insights. Each insight should be a long-term storage. Things like new knowledge gained. Do not force insights - only add ones that naturally emerge from the content and would help build meaningful connections between notes.", "items": { "type": "string" }, "type": "array" }, "todos": { "description": "A list of todos. Each todo should be a short description of the task to be done. A todo should be actionable.", "items": { "type": "string" }, "type": "array" } }, "required": [ "accomplishments", "insights" ], "type": "object" }
ID: saavkeo89k