get_notes_by_folder
Retrieve all notes from a specific folder in NotePlan using Claude Desktop. Use this tool to organize and access your notes directly from within conversations, enhancing productivity and note management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder | Yes | The folder name to search in |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"folder": {
"description": "The folder name to search in",
"type": "string"
}
},
"required": [
"folder"
],
"type": "object"
}