create_daily_note
Generates a daily note in NotePlan by specifying a date (YYYY-MM-DD) and initial content, enabling users to organize tasks and ideas directly from Claude conversations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | Initial content for the daily note | |
date | No | The date for the daily note (YYYY-MM-DD format) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "Initial content for the daily note",
"type": "string"
},
"date": {
"description": "The date for the daily note (YYYY-MM-DD format)",
"type": "string"
}
},
"type": "object"
}