read_note
Retrieve markdown notes by title or permalink from your local knowledge base, enabling quick access to stored information for reference and review.
Instructions
Read a markdown note by title or permalink.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier | Yes | ||
page | No | ||
page_size | No | ||
project | No |
Input Schema (JSON Schema)
{
"properties": {
"identifier": {
"title": "Identifier",
"type": "string"
},
"page": {
"default": 1,
"title": "Page",
"type": "integer"
},
"page_size": {
"default": 10,
"title": "Page Size",
"type": "integer"
},
"project": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project"
}
},
"required": [
"identifier"
],
"type": "object"
}