read_note
Retrieve and display the content of a specific Markdown note file to access stored information and review note details.
Instructions
Read the contents of a note
Args: filename: Note filename (with .md extension)
Returns: Note content
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filename | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}