read_note
Access the full contents of a note file in your notes directory by specifying its relative path. Enables direct retrieval and review of stored information within your personal knowledge system.
Instructions
Read the complete contents of a note file from your notes directory. Specify the path relative to your notes directory (e.g., 'Log/2023-01-01.md'). Returns the full text content of the note file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | The path to the note file, relative to your notes directory |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path to the note file, relative to your notes directory",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}