Create private seed packet
create_seed_packetSave private context for future sessions by writing a local seed packet that holds preferences, conventions, and lessons until imported.
Instructions
Use when the user wants durable private context — preferences, conventions, lessons — captured for a future session rather than handed to someone else. This writes a purpose: seed, sensitivity: private packet to .notch/private/outbox/ from the title and summary you supply, and it stays local and unimported until someone runs import_seed_packet.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Short human-readable title for the seed packet; also used to build the stored filename. | |
| lessons | No | Lessons from prior work to carry forward; accepted but not recorded by the MCP server — fold them into summary. | |
| prompts | No | Reusable prompts to carry forward; accepted but not recorded by the MCP server — fold them into summary. | |
| summary | Yes | The private context being carried forward; stored as the packet summary and repeated in the packet's User Preferences section. | |
| actorName | No | Name recorded as the author of this write; defaults to the server's configured actor, or 'mcp-client'. | |
| outputPath | No | Project-relative path to write an extra copy of the seed packet Markdown to, in addition to the store copy. | |
| sourceLinks | No | Context links to attach (kind: file, url, commit, issue, record, command, or repo); file links must resolve inside the project root. | |
| sourceStorePath | No | Path of the store the context came from; accepted but not recorded by the MCP server — name the source in summary instead. | |
| userPreferences | No | Preferences to carry forward; accepted but not recorded by the MCP server — fold them into summary. | |
| workflowConventions | No | Working conventions to carry forward; accepted but not recorded by the MCP server — fold them into summary. |