notes-create
Create a new note. Required: title (string). Always include a 2-3 sentence summary too (required by convention, even though the schema only enforces title) so the note is useful to future LLM sessions. Optional: body (Markdown with [[id:Note Title]] wiki-links), summary, source_url, container_id, tag_list (comma-separated), team_id (to create in a team), review_after (ISO 8601 datetime, only set this for time-boxed notes that should flag themselves stale after a date). A new note starts verified (status 'active'). Example: {title: 'Meeting Notes', body: '## Agenda\n...', container_id: 5, tag_list: 'meetings, q4'}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Note body content (Markdown with [[id:Note Title]] wiki-links) | |
| title | Yes | Note title (required) | |
| summary | No | A 2-3 sentence summary of the note. Always provide one. | |
| team_id | No | Create note in this team instead of personal space. Omit it (or send null) for personal space. | |
| tag_list | No | Comma-separated list of tags (e.g., 'ruby, rails, testing') | |
| source_url | No | Source URL reference | |
| container_id | No | Container ID to place the note in | |
| review_after | No | Optional ISO 8601 datetime after which the note should be treated as stale. Use for time-boxed notes (e.g. '2026-12-31'). |