list_notes
Retrieve and display all stored notes with optional filtering by tags to organize and access your documented information quickly.
Instructions
Get a list of all notes
Args: tag: Optional tag filter
Returns: List of notes with titles and dates
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No |
Input Schema (JSON Schema)
{
"properties": {
"tag": {
"default": "",
"title": "Tag",
"type": "string"
}
},
"type": "object"
}