write_note
Create and store text notes with title and content for organized personal documentation and reference.
Instructions
Write a new note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Text content of the note | |
title | Yes | Title of the note |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Text content of the note",
"type": "string"
},
"title": {
"description": "Title of the note",
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}