add_note
Create a note in the knowledge base to capture and organize information, using a title, markdown content, and optional tags. Returns the created note.
Instructions
Create a new note in the knowledge base.
Args: title: A short descriptive title for the note. content: The full body/content of the note (supports markdown). tags: Optional list of tags for categorization (e.g. ["python", "tutorial"]).
Returns: The newly created note with its assigned ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | ||
| title | Yes | ||
| content | Yes |